@author Generated from Forte @since 19-Nov-2008
3435363738394041
// Constructors // ------------ public Helicopter() { // Explicitly call the superclass constructor to prevent the implicit call super(); this.setEngine(new Engine()); }
727374757677787980
public String getModel() { return this.model; } public void setEngine(Engine engine) { Engine oldValue = this.engine; this.engine = engine; this.qq_Listeners.firePropertyChange("engine", oldValue, this.engine); }