home *** CD-ROM | disk | FTP | other *** search
- public class JScriptNumberObject extends JSbxObject implements JSbxPropertyInterface {
- public static final String NAME = "Number";
- private double dVal = (double)0.0F;
-
- public void SetValue(double var1) {
- this.dVal = var1;
- }
-
- public double GetValue() {
- return this.dVal;
- }
-
- public JScriptNumberObject(JScriptConstructor var1) {
- super(var1);
- }
-
- public JSbxValue PropertyCallFunction(JSbxObjectProperty var1, JScriptCallParam var2) throws JSbxExceptionBase {
- return null;
- }
-
- public void PropertyGet(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- }
-
- public void PropertyPut(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- }
-
- public String Property_GetJScript_typeofString(JSbxObjectProperty var1) {
- return "numberobject";
- }
-
- public String GetJScriptString(boolean var1) {
- return String.valueOf(this.dVal);
- }
- }
-