com.aptana.ide.editor.js.runtime
Class NativeMath

java.lang.Object
  extended by com.aptana.ide.editor.js.runtime.ObjectBase
      extended by com.aptana.ide.editor.js.runtime.NativeMath
All Implemented Interfaces:
IObject, IRange, IDocumentationContainer

public class NativeMath
extends ObjectBase

Author:
Kevin Lindsey, Robin Debreuil

Field Summary
protected  Environment owningEnvironment
          The environment that owns this instance
 
Fields inherited from class com.aptana.ide.editor.js.runtime.ObjectBase
NULL, UNDEFINED
 
Constructor Summary
NativeMath(Environment owningEnvironment)
          Initialize this type into the global object
 
Method Summary
 java.lang.String getClassName()
          Returns the class name of this object.
 Environment getOwningEnvironment()
           
 
Methods inherited from class com.aptana.ide.editor.js.runtime.ObjectBase
canPut, containsOffset, deletePropertyName, getDocumentation, getEndingOffset, getInstance, getLength, getLocalProperty, getLocalPropertyCount, getLocalPropertyNames, getProperty, getPropertyNames, getPropertyNames, getPropertyValue, getPrototype, getRange, getStartingOffset, hasDocumentation, hasLocalProperty, hasProperty, isEmpty, putLocalProperty, putPropertyValue, putPropertyValue, setDocumentation, setPrototype, unputPropertyName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

owningEnvironment

protected Environment owningEnvironment
The environment that owns this instance

Constructor Detail

NativeMath

public NativeMath(Environment owningEnvironment)
Initialize this type into the global object

Parameters:
owningEnvironment - The environment that owns this instance
Method Detail

getOwningEnvironment

public Environment getOwningEnvironment()
Returns:
The environment that owns this instance

getClassName

public java.lang.String getClassName()
Description copied from interface: IObject
Returns the class name of this object. This implements [[Class]] from the ECMA specification

Specified by:
getClassName in interface IObject
Specified by:
getClassName in class ObjectBase
Returns:
This object's class name
See Also:
ObjectBase.getClassName()