root/tags/0.2/src/springy/context/AbstractSerializablePropertyValue.java

Revision 6975 (checked in by jan, 2 years ago)

first implementation of serializable jruby context

Line 
1 package springy.context;
2
3 import org.springframework.beans.PropertyValue;
4
5 /**
6  * TODO: comment
7  */
8 public abstract class AbstractSerializablePropertyValue extends PropertyValue implements XmlSerializable{
9     public AbstractSerializablePropertyValue(String name, Object value) {
10         super(name, value);
11     }
12
13     public AbstractSerializablePropertyValue(PropertyValue original) {
14         super(original);
15     }
16 }
Note: See TracBrowser for help on using the browser.