Package de.micromata.opengis.kml.v_2_2_0.atom

Examples of de.micromata.opengis.kml.v_2_2_0.atom.Author


    /**
     * Create an instance of {@link Author}
     *
     */
    public static Author createAtomAuthor() {
        return new Author();
    }
View Full Code Here


     * this.setAtomAuthor(author); </code>
     *
     *
     */
    public Author createAndSetAtomAuthor() {
        Author newValue = new Author();
        this.setAtomAuthor(newValue);
        return newValue;
    }
View Full Code Here

    /**
     * Create an instance of {@link Author}
     *
     */
    public static Author createAtomAuthor() {
        return new Author();
    }
View Full Code Here

     * this.setAtomAuthor(author); </code>
     *
     *
     */
    public Author createAndSetAtomAuthor() {
        Author newValue = new Author();
        this.setAtomAuthor(newValue);
        return newValue;
    }
View Full Code Here

        Document doc = (Document) kml.getFeature();
        doc.createAndSetAtomAuthor();
        doc.setOpen(true);
        GeoServerInfo gsInfo = encodingContext.getWms().getGeoServer().getGlobal();
        String authorName = gsInfo.getSettings().getContact().getContactPerson();
        Author author = doc.createAndSetAtomAuthor();
        author.addToNameOrUriOrEmail(authorName);
        doc.createAndSetAtomLink(gsInfo.getSettings().getOnlineResource());
       
        WMSMapContent mapContent = encodingContext.getMapContent();
        doc.setDescription(buildDescription(mapContent));
View Full Code Here

     *
     * @param href
     *     required parameter
     */
    public Link createAndSetAtomLink(final String href) {
        Link newValue = new Link(href);
        this.setAtomLink(newValue);
        return newValue;
    }
View Full Code Here

    /**
     * Create an instance of {@link AnimatedUpdate}
     *
     */
    public static AnimatedUpdate createGxAnimatedUpdate() {
        return new AnimatedUpdate();
    }
View Full Code Here

    /**
     * Create an instance of {@link AnimatedUpdate}
     *
     */
    public static AnimatedUpdate createGxAnimatedUpdate() {
        return new AnimatedUpdate();
    }
View Full Code Here

    /**
     * Create an instance of {@link FlyTo}
     *
     */
    public static FlyTo createGxFlyTo() {
        return new FlyTo();
    }
View Full Code Here

    /**
     * Create an instance of {@link FlyTo}
     *
     */
    public static FlyTo createGxFlyTo() {
        return new FlyTo();
    }
View Full Code Here

TOP

Related Classes of de.micromata.opengis.kml.v_2_2_0.atom.Author

Copyright © 2018 www.massapicom. 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.