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(); }
658659660661662663664