This is an abstract base class and cannot be used directly in a KML file. It provides the id attribute, which allows unique identification of a KML element, and the targetId attribute, which is used to reference objects that have already been loaded into Google Earth. The id attribute must be assigned if the mechanism is to be used.
<!-- abstract element; do not create --> <!-- Object id="ID" targetId="NCName" --> <!-- /Object> -->
554555556557558559560
/** * Create an instance of {@link Author} * */ public static Author createAtomAuthor() { return new Author(); }
127512761277127812791280128112821283
* this.setAtomAuthor(author); </code> * * */ public Author createAndSetAtomAuthor() { Author newValue = new Author(); this.setAtomAuthor(newValue); return newValue; }
560561562563564565566
129312941295129612971298129913001301
* * @param href * required parameter */ public Link createAndSetAtomLink(final String href) { Link newValue = new Link(href); this.setAtomLink(newValue); return newValue; }
572573574575576577578
/** * Create an instance of {@link AnimatedUpdate} * */ public static AnimatedUpdate createGxAnimatedUpdate() { return new AnimatedUpdate(); }
578579580581582583584
580581582583584585586
/** * Create an instance of {@link FlyTo} * */ public static FlyTo createGxFlyTo() { return new FlyTo(); }
586587588589590591592
588589590591592593594
/** * Create an instance of {@link LatLonQuad} * */ public static LatLonQuad createGxLatLonQuad() { return new LatLonQuad(); }
594595596597598599600