view src/plparser/TestParser.java @ 11:79d492bce828

clean up
author one
date Thu, 02 Sep 2010 11:55:56 +0900
parents b149a5aa465a
children
line wrap: on
line source

package plparser;


public class TestParser {

	public static void main(String arg[]) {
		PropertyListParser<Property> p;
		PropertyListNodeFactory<Property> lf = new PropertyFactoryImpl(); 
		p = new PropertyListParser<Property>("{ a=b;}",lf);
		Property n = p.parse();
		if (n!=null) System.out.print(n); System.out.println(".");
	}
}