simulator
Class Ambient

java.lang.Object
  |
  +--simulator.Ambient

abstract class Ambient
extends java.lang.Object

This class is provided becouse you can add some static object in the simulator when a connection is made. It's abstract so you must implement it. There's only one method in this class: buildStatic that is called by the Connection's initilization class


Constructor Summary
Ambient()
          This constructor is here only to remember you that your class may have an initialization part that can be called only in the Server initialization.
 
Method Summary
abstract  void buildStatic(Connection connection)
          This method is that build the static ambient.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Ambient

public Ambient()
This constructor is here only to remember you that your class may have an initialization part that can be called only in the Server initialization.
Method Detail

buildStatic

public abstract void buildStatic(Connection connection)
This method is that build the static ambient. You may create new vrml node and add them to nodesList of Connection.
Parameters:
connection - a reference to Connection for using it's object.
See Also:
Connection.nodesList