Uses of Class
plugins.big.bigsnake.keeper.SnakeKeeper

Packages that use SnakeKeeper
plugins.big.bigsnake   
plugins.big.bigsnake.io   
plugins.big.bigsnake.keeper   
plugins.big.bigsnake.roi   
 

Uses of SnakeKeeper in plugins.big.bigsnake
 

Methods in plugins.big.bigsnake with parameters of type SnakeKeeper
 void BIGSnake.activateSnake(SnakeKeeper keeper)
          Makes a particular snake active and responsive to interactions.
 void BIGSnake.deactivateSnake(SnakeKeeper keeper)
          Makes a particular snake inactive and not responsive to interaction.
 boolean BIGSnake.isActiveSnake(SnakeKeeper keeper)
          Returns true if SnakeKeeper passed is the active one.
 

Uses of SnakeKeeper in plugins.big.bigsnake.io
 

Methods in plugins.big.bigsnake.io that return types with arguments of type SnakeKeeper
 java.util.ArrayList<SnakeKeeper> IOXMLUtils.loadSnakesFromXML(ImageLUTContainer imageLUT, BIGSnake mainPlugin)
          Opens a dialog to select an XML file, and loads all the snakes in the active Sequence.
 

Uses of SnakeKeeper in plugins.big.bigsnake.keeper
 

Methods in plugins.big.bigsnake.keeper that return SnakeKeeper
 SnakeKeeper KeepersList.getActiveSnakeKeeper()
          Returns the active SnakeKeeper.
 

Methods in plugins.big.bigsnake.keeper with parameters of type SnakeKeeper
 boolean KeepersList.activateSnakeKeeper(SnakeKeeper keeper)
          If the SnakeKeeper passed as a parameter is in the list, it becomes activated and the method returns true.
 void KeepersList.addAndActivateKeeper(SnakeKeeper keeper)
          Adds a SnakeKeeper at the end of the list, and sets it to selected.
 boolean KeepersList.deactivateSnakeKeeper(SnakeKeeper keeper)
          If the SnakeKeeper passed as a parameter is in the list, it becomes deactivated and the method returns true.
 boolean KeepersList.isActiveSnakeKeeper(SnakeKeeper keeper)
          Returns true if the SnakeKeeper passed as a parameters if the active one.
 

Uses of SnakeKeeper in plugins.big.bigsnake.roi
 

Constructors in plugins.big.bigsnake.roi with parameters of type SnakeKeeper
ROI2DSnake(ESnake snake, SnakeKeeper keeper)
          Constructor.