A container for zero or more geometry primitives associated with the same feature.
Note: The tag has been deprecated. Use instead.
<MultiGeometry id="ID"> <!-- specific to MultiGeometry --> <!-- 0 or more Geometry elements --> </MultiGeometry>
642643644645646647648
/** * Create an instance of {@link SoundCue} * */ public static SoundCue createGxSoundCue() { return new SoundCue(); }
397398399400401402403404405
* this.setFeature(tour); </code> * * */ public Tour createAndSetTour() { Tour newValue = new Tour(); this.setFeature(newValue); return newValue; }
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
650651652653654655656
620621622623624625626
/** * Create an instance of {@link TourControl} * */ public static TourControl createGxTourControl() { return new TourControl(); }