Interface NameIdInterface
-
- All Known Implementing Classes:
BillboardNode,Bindable,BspNode,CameraNode,ClodMesh,DefaultShaderEffect,Geometry,GoochEffect,HierarchicalTriMesh,IndexBuffer,IridescenceEffect,LatticeEffect,LightingEffect,LightNode,MaterialEffect,MaterialTextureEffect,Node,PlanarReflectionEffect,PlanarShadowEffect,Polyline,Polypoint,Program,RipplingOceanEffect,ShaderEffect,SimpleBumpMapEffect,Spatial,Texture,TextureEffect,Triangles,TriMesh,TubeSurface,VertexBuffer,VertexColor3Effect,WireframeBehindEffect
public interface NameIdInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidGetAllObjectsByName(java.lang.String rkName, java.util.Vector<GraphicsObject> rkObjects)Writes all GraphicsObjects with the name that matches the input parameter, rkName into the Vector parameter rkObjects.GraphicsObjectGetObjectByID(int uiID)Returns the GraphicsObject with the ID that matches the input parameter, uiID.GraphicsObjectGetObjectByName(java.lang.String rkName)Returns the GraphicsObject with the name that matches the input parameter, rkName.
-
-
-
Method Detail
-
GetAllObjectsByName
void GetAllObjectsByName(java.lang.String rkName, java.util.Vector<GraphicsObject> rkObjects)Writes all GraphicsObjects with the name that matches the input parameter, rkName into the Vector parameter rkObjects.- Parameters:
rkName- the name of the objects to return.rkObjects- a Vector of all objects with the matching name.
-
GetObjectByID
GraphicsObject GetObjectByID(int uiID)
Returns the GraphicsObject with the ID that matches the input parameter, uiID.- Parameters:
uiID- the ID of the object to return.- Returns:
- the GraphicsObject that matches the input name.
-
GetObjectByName
GraphicsObject GetObjectByName(java.lang.String rkName)
Returns the GraphicsObject with the name that matches the input parameter, rkName.- Parameters:
rkName- the name of the object to return.- Returns:
- the GraphicsObject that matches the input name.
-
-