prompto.csharp.CSharpDecimalLiteral Maven / Gradle / Ivy
The newest version!
package prompto.csharp;
public class CSharpDecimalLiteral extends CSharpLiteral {
Double value;
public CSharpDecimalLiteral(String text) {
super(text);
this.value = Double.valueOf(text);
}
@Override
public String toString() {
return value.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy