Java Doc for CitationImpl.java in  » GIS » GeoTools-2.4.1 » org » geotools » metadata » iso » citation » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.metadata.iso.citation 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.geotools.metadata.iso.MetadataEntity
   org.geotools.metadata.iso.citation.CitationImpl

CitationImpl
public class CitationImpl extends MetadataEntity implements Citation(Code)
Standardized resource reference.
since:
   2.1
version:
   $Id: CitationImpl.java 25189 2007-04-17 13:23:47Z desruisseaux $
author:
   Martin Desruisseaux
author:
   Jody Garnett



Constructor Summary
public  CitationImpl()
     Constructs an initially empty citation.
public  CitationImpl(Citation source)
     Constructs a new citation initialized to the values specified by the given object. This constructor performs a shallow copy (i.e.
public  CitationImpl(CharSequence title)
     Constructs a citation with the specified title.
public  CitationImpl(ResponsibleParty party)
     Constructs a citation with the specified responsible party.

Method Summary
final  voidaddAuthority(String identifier, boolean asTitle)
     Adds the specified identifier as a CRS authority factory.
public synchronized  CollectiongetAlternateTitles()
     Returns the short name or other language name by which the cited information is known.
public synchronized  CollectiongetCitedResponsibleParties()
     Returns the name and position information for an individual or organization that is responsible for the resource.
public  InternationalStringgetCollectiveTitle()
     Returns the common title with holdings note.
public synchronized  CollectiongetDates()
     Returns the reference date for the cited resource.
public  InternationalStringgetEdition()
     Returns the version of the cited resource.
public synchronized  DategetEditionDate()
     Returns the date of the edition, or null if none.
public  StringgetISBN()
     Returns the International Standard Book Number, or null if none.
public  StringgetISSN()
     Returns the International Standard Serial Number, or null if none.
public synchronized  CollectiongetIdentifierTypes()
     Returns the reference form of the unique identifier (ID).
public synchronized  CollectiongetIdentifiers()
     Returns the unique identifier for the resource.
public  InternationalStringgetOtherCitationDetails()
     Returns other information required to complete the citation that is not recorded elsewhere.
public synchronized  CollectiongetPresentationForm()
     Returns the mode in which the resource is represented, or an empty string if none.
public  SeriesgetSeries()
     Returns the information about the series, or aggregate dataset, of which the dataset is a part.
public  InternationalStringgetTitle()
     Returns the name by which the cited resource is known.
public synchronized  voidsetAlternateTitles(Collection newValues)
     Set the short name or other language name by which the cited information is known.
public synchronized  voidsetCitedResponsibleParties(Collection newValues)
     Set the name and position information for an individual or organization that is responsible for the resource.
public synchronized  voidsetCollectiveTitle(InternationalString newValue)
     Set the common title with holdings note.
public synchronized  voidsetDates(Collection newValues)
     Set the reference date for the cited resource.
public synchronized  voidsetEdition(InternationalString newValue)
     Set the version of the cited resource.
public synchronized  voidsetEditionDate(Date newValue)
     Set the date of the edition, or null if none.
public synchronized  voidsetISBN(String newValue)
     Set the International Standard Book Number, or null if none.
public synchronized  voidsetISSN(String newValue)
     Set the International Standard Serial Number, or null if none.
public synchronized  voidsetIdentifierTypes(Collection newValues)
     Set the reference form of the unique identifier (ID).
public synchronized  voidsetIdentifiers(Collection newValues)
     Set the unique identifier for the resource.
public synchronized  voidsetOtherCitationDetails(InternationalString newValue)
     Set other information required to complete the citation that is not recorded elsewhere.
public synchronized  voidsetPresentationForm(Collection newValues)
     Set the mode in which the resource is represented, or an empty string if none.
public synchronized  voidsetSeries(Series newValue)
     Set the information about the series, or aggregate dataset, of which the dataset is a part.
public synchronized  voidsetTitle(InternationalString newValue)
     Set the name by which the cited resource is known.


Constructor Detail
CitationImpl
public CitationImpl()(Code)
Constructs an initially empty citation.



CitationImpl
public CitationImpl(Citation source)(Code)
Constructs a new citation initialized to the values specified by the given object. This constructor performs a shallow copy (i.e. each source attributes are reused without copying them).



CitationImpl
public CitationImpl(CharSequence title)(Code)
Constructs a citation with the specified title.
Parameters:
  title - The title, as a String or an InternationalString object.



CitationImpl
public CitationImpl(ResponsibleParty party)(Code)
Constructs a citation with the specified responsible party. This convenience constructor initialize the citation title to the first non-null of the following properties: , or .
since:
   2.2




Method Detail
addAuthority
final void addAuthority(String identifier, boolean asTitle)(Code)
Adds the specified identifier as a CRS authority factory. This is used as a convenience method for the creation of constants, and for making sure that all of them use the same identifier type.



getAlternateTitles
public synchronized Collection getAlternateTitles()(Code)
Returns the short name or other language name by which the cited information is known. Example: "DCW" as an alternative title for "Digital Chart of the World".



getCitedResponsibleParties
public synchronized Collection getCitedResponsibleParties()(Code)
Returns the name and position information for an individual or organization that is responsible for the resource. Returns an empty string if there is none.



getCollectiveTitle
public InternationalString getCollectiveTitle()(Code)
Returns the common title with holdings note. Note: title identifies elements of a series collectively, combined with information about what volumes are available at the source cited. Returns null if there is no title.



getDates
public synchronized Collection getDates()(Code)
Returns the reference date for the cited resource.



getEdition
public InternationalString getEdition()(Code)
Returns the version of the cited resource.



getEditionDate
public synchronized Date getEditionDate()(Code)
Returns the date of the edition, or null if none.



getISBN
public String getISBN()(Code)
Returns the International Standard Book Number, or null if none.



getISSN
public String getISSN()(Code)
Returns the International Standard Serial Number, or null if none.



getIdentifierTypes
public synchronized Collection getIdentifierTypes()(Code)
Returns the reference form of the unique identifier (ID). Example: Universal Product Code (UPC), National Stock Number (NSN).



getIdentifiers
public synchronized Collection getIdentifiers()(Code)
Returns the unique identifier for the resource. Example: Universal Product Code (UPC), National Stock Number (NSN).



getOtherCitationDetails
public InternationalString getOtherCitationDetails()(Code)
Returns other information required to complete the citation that is not recorded elsewhere. Returns null if none.



getPresentationForm
public synchronized Collection getPresentationForm()(Code)
Returns the mode in which the resource is represented, or an empty string if none.



getSeries
public Series getSeries()(Code)
Returns the information about the series, or aggregate dataset, of which the dataset is a part. Returns null if none.



getTitle
public InternationalString getTitle()(Code)
Returns the name by which the cited resource is known.



setAlternateTitles
public synchronized void setAlternateTitles(Collection newValues)(Code)
Set the short name or other language name by which the cited information is known.



setCitedResponsibleParties
public synchronized void setCitedResponsibleParties(Collection newValues)(Code)
Set the name and position information for an individual or organization that is responsible for the resource. Returns an empty string if there is none.



setCollectiveTitle
public synchronized void setCollectiveTitle(InternationalString newValue)(Code)
Set the common title with holdings note. Note: title identifies elements of a series collectively, combined with information about what volumes are available at the source cited. Set to null if there is no title.



setDates
public synchronized void setDates(Collection newValues)(Code)
Set the reference date for the cited resource.



setEdition
public synchronized void setEdition(InternationalString newValue)(Code)
Set the version of the cited resource.



setEditionDate
public synchronized void setEditionDate(Date newValue)(Code)
Set the date of the edition, or null if none. Date



setISBN
public synchronized void setISBN(String newValue)(Code)
Set the International Standard Book Number, or null if none.



setISSN
public synchronized void setISSN(String newValue)(Code)
Set the International Standard Serial Number, or null if none.



setIdentifierTypes
public synchronized void setIdentifierTypes(Collection newValues)(Code)
Set the reference form of the unique identifier (ID). Example: Universal Product Code (UPC), National Stock Number (NSN).



setIdentifiers
public synchronized void setIdentifiers(Collection newValues)(Code)
Set the unique identifier for the resource. Example: Universal Product Code (UPC), National Stock Number (NSN).



setOtherCitationDetails
public synchronized void setOtherCitationDetails(InternationalString newValue)(Code)
Set other information required to complete the citation that is not recorded elsewhere. Set to null if none.



setPresentationForm
public synchronized void setPresentationForm(Collection newValues)(Code)
Set the mode in which the resource is represented, or an empty string if none.



setSeries
public synchronized void setSeries(Series newValue)(Code)
Set the information about the series, or aggregate dataset, of which the dataset is a part. Set to null if none.



setTitle
public synchronized void setTitle(InternationalString newValue)(Code)
Set the name by which the cited resource is known.



Methods inherited from org.geotools.metadata.iso.MetadataEntity
protected static void appendLineSeparator(StringBuffer buffer)(Code)(Java Doc)
protected static void ensureNonNull(String name, Object object) throws InvalidMetadataException(Code)(Java Doc)
public MetadataStandard getStandard()(Code)(Java Doc)
protected static Object unmodifiable(Object object)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.