All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.csharp.CSharpBooleanLiteral Maven / Gradle / Ivy

The newest version!
package prompto.csharp;



public class CSharpBooleanLiteral extends CSharpLiteral {

	Boolean value;
	
	public CSharpBooleanLiteral(String text) {
		super(text);
		value = Boolean.valueOf(text);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy