public void setName(String name) { FIBAttributeNotification<String> notification = requireChange(Parameters.name, name); if (notification != null) { this.name = name; hasChanged(notification); } }
public void setDescription(String description) { FIBAttributeNotification<String> notification = requireChange(Parameters.description, description); if (notification != null) { this.description = description; hasChanged(notification); } }
public void setParameters(Vector<FIBParameter> parameters) { FIBAttributeNotification<Vector<FIBParameter>> notification = requireChange(Parameters.parameters, parameters); if (notification != null) { this.parameters = parameters; hasChanged(notification); } }
public void notify(FIBModelNotification notification) { hasChanged(notification); }