Uses of Class
tico.board.TBoard

Packages that use TBoard
tico.board Package that contains all the board and project classes. 
tico.board.events Package with the board elements events and listeners. 
tico.components Package that contains a set of Swing based components that are used in both applications. 
tico.editor Package with the editor tool bars. 
tico.rules   
tico.rules.dialogs   
 

Uses of TBoard in tico.board
 

Fields in tico.board declared as TBoard
static TBoard TBoardConstants.currentBoard
           
 

Methods in tico.board that return TBoard
 TBoard TProject.getBoard(int index)
          Returns the project board in the specified index.
 TBoard TProject.getBoard(java.lang.String name)
          Returns the project board with the specified name.
 TBoard TProject.getInitialBoard()
          Returns the initialBoard.
static TBoard TBoard.XMLDecode(org.w3c.dom.Element element)
          Returns a TBoard object from the data contained in the XML Element.
 

Methods in tico.board with parameters of type TBoard
 void TProject.addBoard(TBoard board)
          Add a board to the project.
 void TBoardModel.deleteBoardFromAttributes(TBoard board)
          Deletes the specified board from all the model component's attributes.
 boolean TProject.isRepeatedName(TBoard board, java.lang.String name)
          Determines if any project board different from board has the specified name.
 void TProject.removeBoard(TBoard board)
          Removes the specified board from the project.
 void TProject.setInitialBoard(TBoard initialBoard)
          Sets the initialBoard.
 

Uses of TBoard in tico.board.events
 

Methods in tico.board.events that return TBoard
 TBoard ProjectChangeEvent.getChangedBoard()
          Returns the changed board.
 

Constructors in tico.board.events with parameters of type TBoard
ProjectChangeEvent(java.lang.Object source, TBoard changedBoard, int change)
          Constructs an ProjectChangeEvent object.
 

Uses of TBoard in tico.components
 

Methods in tico.components that return TBoard
 TBoard TInitialBoardSelectionPanel.getInitialBoard()
          Returns the selected initialBoard.
 

Methods in tico.components with parameters of type TBoard
 void TInitialBoardSelectionPanel.setInitialBoard(TBoard board)
          Set the initialBoard.
 

Constructors in tico.components with parameters of type TBoard
TSendTextChooser(TBoard board)
          Creates a new TSendTextChooser for the specified board.
TSendTextChooser(TBoard board, java.lang.String title)
          Creates a new TSendTextChooser for the specified board.
 

Uses of TBoard in tico.editor
 

Methods in tico.editor that return TBoard
 TBoard TBoardContainer.getBoard()
          Gets the board of this TBoardContainer.
 TBoard TEditor.getCurrentBoard()
          Returns the current editing board.
static TBoard TProjectHandler.loadBoard(java.io.File zipFile)
          Creates a board using the information contained in a zipFile.
 

Methods in tico.editor with parameters of type TBoard
static void TProjectHandler.saveBoard(TBoard board, java.io.File zipFile)
          Saves the specified board to the specified zipFile.
 

Constructors in tico.editor with parameters of type TBoard
TBoardContainer(TEditor editor, TBoard board)
          Creates a new TBoardContainer that will interact between the specified editor and board
 

Uses of TBoard in tico.rules
 

Methods in tico.rules with parameters of type TBoard
 void TGenerateRules.getBoardAttributes(TBoard board)
           
 void TGenerateRules.getCellsAttributes(TBoard board)
           
 

Uses of TBoard in tico.rules.dialogs
 

Constructors in tico.rules.dialogs with parameters of type TBoard
TValidationDialog(TEditor editor, TBoard board)
          Creates a new TValidationDialog for the specified editor and board.