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(); }
580581582583584585586
/** * Create an instance of {@link FlyTo} * */ public static FlyTo createGxFlyTo() { return new FlyTo(); }
588589590591592593594
/** * Create an instance of {@link LatLonQuad} * */ public static LatLonQuad createGxLatLonQuad() { return new LatLonQuad(); }
206207208209210211212213214
* this.getGeometry().add(multiTrack); </code> * * */ public MultiTrack createAndAddMultiTrack() { MultiTrack newValue = new MultiTrack(); this.getGeometry().add(newValue); return newValue; }
596597598599600601602
/** * Create an instance of {@link Playlist} * */ public static Playlist createGxPlaylist() { return new Playlist(); }
604605606607608609610
/** * 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(); }