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> -->
243244245246247248249250251
* this.getFeature().add(tour); </code> * * */ public Tour createAndAddTour() { Tour newValue = new Tour(); this.getFeature().add(newValue); return newValue; }
612613614615616617618
/** * Create an instance of {@link Tour} * */ public static Tour createGxTour() { return new Tour(); }
328329330331332333334335336
136137138139140141142143144
397398399400401402403404405
* this.setFeature(tour); </code> * * */ public Tour createAndSetTour() { Tour newValue = new Tour(); this.setFeature(newValue); return newValue; }
650651652653654655656
620621622623624625626
/** * Create an instance of {@link TourControl} * */ public static TourControl createGxTourControl() { return new TourControl(); }
658659660661662663664
221222223224225226227228229
* this.getGeometry().add(track); </code> * * */ public Track createAndAddTrack() { Track newValue = new Track(); this.getGeometry().add(newValue); return newValue; }