Examples of SimpleCitation


Examples of org.apache.sis.internal.simple.SimpleCitation

     *
     * @param citation         Bibliographical reference to the international standard.
     * @param interfacePackage The root package for metadata interfaces.
     */
    MetadataStandard(final String citation, final String interfacePackage) {
        this.citation         = new SimpleCitation(citation);
        this.interfacePackage = interfacePackage;
        this.accessors        = new IdentityHashMap<Class<?>,Object>();
    }
View Full Code Here

Examples of org.apache.sis.internal.simple.SimpleCitation

            final Citation citation = AUTHORITIES[i];
            if (titleMatches(citation, title)) {
                return citation;
            }
        }
        return new SimpleCitation(title);
    }
View Full Code Here

Examples of org.apache.sis.internal.simple.SimpleCitation

    /**
     * Tests {@link DefinitionURI#toURN(String, ReferenceIdentifier)}.
     */
    @Test
    public void testToURN() {
        final ReferenceIdentifier identifier = new SimpleReferenceIdentifier(new SimpleCitation("EPSG"), "4326");
        assertEquals("urn:ogc:def:crs:EPSG::4326", DefinitionURI.format("crs", identifier));
    }
View Full Code Here

Examples of org.apache.sis.internal.simple.SimpleCitation

     *
     * @param citation         Bibliographical reference to the international standard.
     * @param interfacePackage The root package for metadata interfaces.
     */
    MetadataStandard(final String citation, final String interfacePackage) {
        this.citation         = new SimpleCitation(citation);
        this.interfacePackage = interfacePackage;
        this.accessors        = new IdentityHashMap<Class<?>,Object>();
    }
View Full Code Here

Examples of org.apache.sis.internal.simple.SimpleCitation

        for (final Citation citation : AUTHORITIES) {
            if (titleMatches(citation, title)) {
                return citation;
            }
        }
        return new SimpleCitation(title);
    }
View Full Code Here

Examples of org.apache.sis.internal.simple.SimpleCitation

    public Citation getVendor() {
        final Package p = getClass().getPackage();
        if (p != null) {
            final String vendor = p.getImplementationVendor();
            if (vendor != null) {
                return new SimpleCitation(vendor);
            }
        }
        return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.