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