vrml.field
Class SFInt32

java.lang.Object
  extended by vrml.Field
      extended by vrml.field.SFInt32
All Implemented Interfaces:
java.lang.Cloneable

public class SFInt32
extends Field

Represents a VRML SFInt32 field in Java.


Constructor Summary
SFInt32()
          Construct a default SFInt32 field.
SFInt32(int value)
          Construct an SFInt32 field.
 
Method Summary
 int getValue()
          Get the value of the SFInt32 field.
 void setValue(ConstSFInt32 i)
          Set the value of an SFInt32 field.
 void setValue(int i)
          Set the value of an SFInt32 field.
 void setValue(SFInt32 i)
          Set the value of an SFInt32 field.
 
Methods inherited from class vrml.Field
clone, dispose, finalize, getPeer, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SFInt32

public SFInt32()
Construct a default SFInt32 field.


SFInt32

public SFInt32(int value)
Construct an SFInt32 field.

Parameters:
value - Initial value of field.
Method Detail

getValue

public int getValue()
Get the value of the SFInt32 field.

Returns:
Value of field.

setValue

public void setValue(int i)
Set the value of an SFInt32 field.

Parameters:
i - Value to set field to.

setValue

public void setValue(ConstSFInt32 i)
Set the value of an SFInt32 field.

Parameters:
i - Value to set field to.

setValue

public void setValue(SFInt32 i)
Set the value of an SFInt32 field.

Parameters:
i - Value to set field to.