View Javadoc

1   /*
2    * DefaultPropertyListenerResult.java
3    *
4    * Created on 22 Май 2006 г., 11:29
5    */
6   
7   package org.weda.property.impl;
8   
9   import org.weda.property.PropertyListenerResult;
10  
11  /**
12   *
13   * @author Mikhail Titov
14   */
15  public class PropertyListenerResultImpl implements PropertyListenerResult {    
16      private Object value;
17      
18      public PropertyListenerResultImpl(Object value){
19          this.value = value;
20      }
21      
22      public Object getValue(){
23          return value;
24      }
25  }