View Javadoc
1   package org.argeo.support.freemarker;
2   
3   public class Animal {
4   	String size;
5   	int price;
6   
7   	public Animal(String size, int price) {
8   		super();
9   		this.size = size;
10  		this.price = price;
11  	}
12  
13  	public String getSize() {
14  		return size;
15  	}
16  
17  	public void setSize(String size) {
18  		this.size = size;
19  	}
20  
21  	public int getPrice() {
22  		return price;
23  	}
24  
25  	public void setPrice(int price) {
26  		this.price = price;
27  	}
28  
29  }