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> -->
206207208209210211212213214
* this.getGeometry().add(multiTrack); </code> * * */ public MultiTrack createAndAddMultiTrack() { MultiTrack newValue = new MultiTrack(); this.getGeometry().add(newValue); return newValue; }
602603604605606607608
/** * Create an instance of {@link MultiTrack} * */ public static MultiTrack createGxMultiTrack() { return new MultiTrack(); }
610611612613614615616
/** * Create an instance of {@link Option} * */ public static Option createGxOption() { return new Option(); }
596597598599600601602
/** * Create an instance of {@link Playlist} * */ public static Playlist createGxPlaylist() { return new Playlist(); }
618619620621622623624
626627628629630631632
/** * Create an instance of {@link SimpleArrayData} * */ public static SimpleArrayData createGxSimpleArrayData() { return new SimpleArrayData(); }
634635636637638639640
/** * Create an instance of {@link SimpleArrayField} * */ public static SimpleArrayField createGxSimpleArrayField() { return new SimpleArrayField(); }
604605606607608609610
/** * Create an instance of {@link SoundCue} * */ public static SoundCue createGxSoundCue() { return new SoundCue(); }
642643644645646647648
397398399400401402403404405
* this.setFeature(tour); </code> * * */ public Tour createAndSetTour() { Tour newValue = new Tour(); this.setFeature(newValue); return newValue; }