示例#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);
 }