Uses of Interface
org.vizzini.math.IStateful

Packages that use IStateful
org.vizzini.example.qubic.ui Provides Qubic user interface classes for the game framework. 
org.vizzini.example.tictactoe.ui Provides tic-tac-toe user interface classes for the game framework. 
org.vizzini.game.simulation Provides simulation classes for games in the game framework. 
org.vizzini.game.simulation.force Provides force classes for simulations in the game framework. 
org.vizzini.math Provides math classes for the game framework. 
org.vizzini.ui.game Provides core game user interface classes for the game framework. 
org.vizzini.ui.game.boardgame Provides board game user interface classes for the game framework. 
org.vizzini.ui.game.boardgame.chess Provides user interface classes for 3D chess for the game framework. 
org.vizzini.ui.game.boardgame.chess.standardtoken Provides standard token user interface classes for the 3D chess framework. 
org.vizzini.ui.game.simulation Provides simulation user interface classes for the game framework. 
org.vizzini.ui.graphics Provides graphics classes for the game framework. 
org.vizzini.ui.graphics.shape Provides graphics shape classes for the game framework. 
 

Uses of IStateful in org.vizzini.example.qubic.ui
 

Classes in org.vizzini.example.qubic.ui that implement IStateful
 class BoxTokenUI
          Provides functionality for a Qubic box token user interface in the game framework.
 class ConeTokenUI
          Provides functionality for a Qubic cone token user interface in the game framework.
 

Uses of IStateful in org.vizzini.example.tictactoe.ui
 

Classes in org.vizzini.example.tictactoe.ui that implement IStateful
 class TokenUISwing
          Provides functionality for a Swing Tic-Tac-Toe token user interface in the game framework.
 

Uses of IStateful in org.vizzini.game.simulation
 

Subinterfaces of IStateful in org.vizzini.game.simulation
 interface IPhysicalObject
          Defines methods required by a physical object.
 

Classes in org.vizzini.game.simulation that implement IStateful
 class AbstractPhysicalObject
          Provides base functionality for a physical object.
 class DefaultPhysicalObject
          Provides a default physical object.
 

Methods in org.vizzini.game.simulation that return IStateful
 IStateful AbstractPhysicalObject.getStatefulParent()
          Return the parent.
 

Methods in org.vizzini.game.simulation with parameters of type IStateful
 void AbstractPhysicalObject.setStatefulParent(IStateful parent)
          Set the parent.
 

Uses of IStateful in org.vizzini.game.simulation.force
 

Subinterfaces of IStateful in org.vizzini.game.simulation.force
 interface IForceConsumer
          Defines methods required by a force consumer for a simulation.
 interface IForceProducer
          Defines methods required by a force producer for a simulation.
 

Uses of IStateful in org.vizzini.math
 

Classes in org.vizzini.math that implement IStateful
 class StatefulSupport
          Provides an implementation of IStateful for use as a delegate.
 

Methods in org.vizzini.math that return IStateful
 IStateful IStateful.getStatefulParent()
          Return the parent.
 IStateful StatefulSupport.getStatefulParent()
          Return the parent.
 

Methods in org.vizzini.math with parameters of type IStateful
 void IStateful.setStatefulParent(IStateful parent)
          Set the parent.
 void StatefulSupport.setStatefulParent(IStateful parent)
          Set the parent.
 

Uses of IStateful in org.vizzini.ui.game
 

Subinterfaces of IStateful in org.vizzini.ui.game
 interface ITokenUI
          Defines methods required by token user interfaces in the game framework.
 

Classes in org.vizzini.ui.game that implement IStateful
 class AbstractTokenUISwing
          Provides base functionality for token user interfaces in the game framework.
 class AbstractTokenUIText
          Provides base functionality for token user interfaces in the game framework.
 class TokenUISupport
          Provides support for token user interfaces in the game framework.
(package private) static class TokenUISupport.MyStatefulSupport
          Provides a concrete implementation of StatefulSupport.
 

Methods in org.vizzini.ui.game that return IStateful
 IStateful AbstractTokenUISwing.getStatefulParent()
          Return the parent.
 IStateful TokenUISupport.getStatefulParent()
          Return the parent.
 

Methods in org.vizzini.ui.game with parameters of type IStateful
 void AbstractTokenUISwing.setStatefulParent(IStateful parent)
          Set the parent.
 void TokenUISupport.setStatefulParent(IStateful parent)
          Set the parent.
 

Uses of IStateful in org.vizzini.ui.game.boardgame
 

Classes in org.vizzini.ui.game.boardgame that implement IStateful
 class BoardShape
          Provides a board for 3D games.
 

Uses of IStateful in org.vizzini.ui.game.boardgame.chess
 

Classes in org.vizzini.ui.game.boardgame.chess that implement IStateful
 class PieceShape
          Provides a base shape class for 3D game pieces.
 

Uses of IStateful in org.vizzini.ui.game.boardgame.chess.standardtoken
 

Classes in org.vizzini.ui.game.boardgame.chess.standardtoken that implement IStateful
 class BishopShape
          Provides a shape class for a chess Bishop.
 class KingShape
          Provides a shape class for a chess King.
 class KnightShape
          Provides a shape class for a chess Knight.
 class MaceShape
          Provides a shape class for a chess Mace.
 class PawnShape
          Provides a shape class for a chess Pawn.
 class QueenShape
          Provides a shape class for a chess Queen.
 class RookShape
          Provides a shape class for a chess Rook.
 

Uses of IStateful in org.vizzini.ui.game.simulation
 

Subinterfaces of IStateful in org.vizzini.ui.game.simulation
 interface IPhysicalObjectUI
          Defines methods required by a physical object user interface.
 

Classes in org.vizzini.ui.game.simulation that implement IStateful
 class EllipsoidTokenUI
          Provides an ellipsoid token user interface.
 

Uses of IStateful in org.vizzini.ui.graphics
 

Subinterfaces of IStateful in org.vizzini.ui.graphics
 interface IShape
          Defines methods required by 3D shapes.
 interface IShapeCanvas
          Provides a canvas for drawing 3D shapes.
 

Classes in org.vizzini.ui.graphics that implement IStateful
(package private)  class AbstractShapeCanvas
          Provides a base class for a canvas for drawing 3D shapes.
(package private)  class ShapeCanvasAWT
          Provides a canvas for drawing 3D shapes.
(package private)  class ShapeCanvasJava3D
          Provides a Java 3D canvas for drawing 3D shapes.
(package private)  class ShapeCanvasSwing
          Provides a Swing canvas for drawing 3D shapes.
 

Methods in org.vizzini.ui.graphics that return IStateful
 IStateful AbstractShapeCanvas.getStatefulParent()
          Return the parent.
 

Methods in org.vizzini.ui.graphics with parameters of type IStateful
 void AbstractShapeCanvas.setStatefulParent(IStateful parent)
          Set the parent.
 

Uses of IStateful in org.vizzini.ui.graphics.shape
 

Classes in org.vizzini.ui.graphics.shape that implement IStateful
 class AbstractShape
          Provides base functionality for 3D shapes.
 class AnchorShape
          Provides a 3D shape that contains other shapes, but has no points itself.
 class Box
          Provides a box shape.
 class BoxExtruded
          Provides a box shape using the extruded shape superclass.
 class Cone
          Shape class for a simple cone.
 class Cylinder
          Shape class for a simple cylinder.
 class Ellipse
          Provides an ellipse shape.
 class Ellipsoid
          Shape class for an ellipsoid.
 class ExtrudedShape
          Provides a shape model for an extruded shape.
 class PolygonShape
          Provides a polygon shape for the 3D graphics system.
 

Methods in org.vizzini.ui.graphics.shape that return IStateful
 IStateful AbstractShape.getStatefulParent()
          Return the parent.
 

Methods in org.vizzini.ui.graphics.shape with parameters of type IStateful
 void AbstractShape.setStatefulParent(IStateful parent)
          Set the parent.
 



Copyright © 2007 Vizzini.org. All Rights Reserved. 2007.12.25.03.00.02