All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.proxy.samples.Bean Maven / Gradle / Ivy

There is a newer version: 3.9
Show newest version
package samples;

import java.beans.*;
/**
 *
 * @author  baliuka
 */
public abstract class Bean implements java.io.Serializable{
   
    String sampleProperty;
    
  abstract public void addPropertyChangeListener(PropertyChangeListener listener); 
   
  abstract public void removePropertyChangeListener(PropertyChangeListener listener);
   
   public String getSampleProperty(){
      return sampleProperty;
   }
   
   public void setSampleProperty(String value){
      this.sampleProperty = value;
   }
   
   public String toString(){
     return "sampleProperty is " + sampleProperty;
   }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy