
prompto.csharp.CSharpBooleanLiteral Maven / Gradle / Ivy
package prompto.csharp;
public class CSharpBooleanLiteral extends CSharpLiteral {
Boolean value;
public CSharpBooleanLiteral(String text) {
super(text);
value = Boolean.valueOf(text);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy