jboynes     2004/01/21 20:56:09

  Modified:    modules/deployment/src/java/org/apache/geronimo/deployment/plugin
                        DConfigBeanSupport.java
               modules/jetty/src/java/org/apache/geronimo/jetty/deployment
                        WebAppDConfigBean.java
  Log:
  Fire property change event
  
  Revision  Changes    Path
  1.3       +2 -2      
incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/plugin/DConfigBeanSupport.java
  
  Index: DConfigBeanSupport.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/plugin/DConfigBeanSupport.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DConfigBeanSupport.java   22 Jan 2004 04:44:43 -0000      1.2
  +++ DConfigBeanSupport.java   22 Jan 2004 04:56:09 -0000      1.3
  @@ -69,8 +69,8 @@
    * @version $Revision$ $Date$
    */
   public abstract class DConfigBeanSupport implements DConfigBean {
  +    protected final PropertyChangeSupport pcs = new 
PropertyChangeSupport(this);
       private final DDBean ddBean;
  -    private final PropertyChangeSupport pcs = new 
PropertyChangeSupport(this);
   
       public DConfigBeanSupport(DDBean ddBean) {
           this.ddBean = ddBean;
  
  
  
  1.2       +4 -3      
incubator-geronimo/modules/jetty/src/java/org/apache/geronimo/jetty/deployment/WebAppDConfigBean.java
  
  Index: WebAppDConfigBean.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/modules/jetty/src/java/org/apache/geronimo/jetty/deployment/WebAppDConfigBean.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- WebAppDConfigBean.java    22 Jan 2004 04:44:43 -0000      1.1
  +++ WebAppDConfigBean.java    22 Jan 2004 04:56:09 -0000      1.2
  @@ -60,8 +60,8 @@
   import org.apache.geronimo.deployment.plugin.DConfigBeanSupport;
   
   /**
  - * 
  - * 
  + *
  + *
    * @version $Revision$ $Date$
    */
   public class WebAppDConfigBean extends DConfigBeanSupport {
  @@ -76,6 +76,7 @@
       }
   
       public void setContextPath(String contextPath) {
  +        pcs.firePropertyChange("contextPath", this.contextPath, contextPath);
           this.contextPath = contextPath;
       }
   }
  
  
  

Reply via email to