1   package net.sf.msplice.property.impl;
2   
3   public class TestBean {
4   
5   	private String stringProperty = null;
6   
7   	private TestNestedProperty nestedProperty = null;
8   
9   	public TestNestedProperty getNestedProperty() {
10  		return nestedProperty;
11  	}
12  
13  	public void setNestedProperty(TestNestedProperty nestedProperty) {
14  		this.nestedProperty = nestedProperty;
15  	}
16  
17  	public String getStringProperty() {
18  		return stringProperty;
19  	}
20  
21  	public void setStringProperty(String stringProperty) {
22  		this.stringProperty = stringProperty;
23  	}
24  }