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

prompto.csharp.CSharpIntegerLiteral Maven / Gradle / Ivy

The newest version!
package prompto.csharp;



public class CSharpIntegerLiteral extends CSharpLiteral {

	Long value;
	
	public CSharpIntegerLiteral(String text) {
		super(text);
		this.value = Long.valueOf(text);
	}

	@Override
	public String toString() {
		return value.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy