view src/plparser/Property.java @ 1:b149a5aa465a

Parser is written
author kono@ie.u-ryukyu.ac.jp
date Sat, 28 Aug 2010 17:39:34 +0900
parents b0dee5b76b12
children 563bcb96e4fa
line wrap: on
line source

package plparser;

public class Property {
	String name;
	
	public Property() {
		
	}
	
	public Property(String name2) {
		name = name2;
	}

	public String toString() {
		return name;
	}

}