1   package net.sf.msplice.property.impl;
2   
3   public class TestNestedProperty {
4   	private String nestedString = null;
5   
6   	public String getNestedString() {
7   		return nestedString;
8   	}
9   
10  	public void setNestedString(String nestedString) {
11  		this.nestedString = nestedString;
12  	}
13  }