DefaultContact changes for revisions 11095:11096

Addition of pre-defined constants. Those constants will be replaced by entries in an embedded database for the Apache SIS project. The metadata-sql module can handle this task.

The comment in the empty constructor has been removed.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r11095:11096 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/citation/ContactImpl.java
Revision 11095Revision 11096
 *
 * @see org.geotools.metadata.citation.OnLineResource#OPEN_GIS
 */
public static final Contact OPEN_GIS = new Contact();
static {
    OPEN_GIS.setOnLineResource(org.geotools.metadata.citation.OnLineResource.OPEN_GIS);
 *
 * @see org.geotools.metadata.citation.OnLineResource#OPEN_GIS
 */
public static final Contact OGC = new Contact();
static {
    OGC.setOnLineResource(org.geotools.metadata.citation.OnLineResource.OGC );
    OGC.freeze();
}
/**
 * Contact informations for the <A HREF="http://www.opengis.org">OpenGIS consortium</A>.
 *
 * @see org.geotools.metadata.citation.OnLineResource#OPEN_GIS
 */
public static final Contact OPEN_GIS = new Contact();
static {
    OPEN_GIS.setOnLineResource(org.geotools.metadata.citation.OnLineResource.OPEN_GIS);
 * Constructs an initially empty contact.
 */
public Contact() {
}

/**
 * Constructs an initially empty contact.
 */
public Contact() {
    // empty constructor, please use set methods and call
    // freeze before returning this instance to client code
}

/**