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

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

package plparser;

public class BooleanProperty extends Property {
	boolean b;
	
	public BooleanProperty(TokenID id) {
		b = id==TokenID.True;
	}

	public String toString() {
		return b?"True":"Fasel";
	}
	
	
}