Uses of Class
net.japanesechess.record.ShogiPly

Packages that use ShogiPly
net.japanesechess.psn   
net.japanesechess.record   
net.japanesechess.util   
net.japanesechess.view   
 

Uses of ShogiPly in net.japanesechess.psn
 

Fields in net.japanesechess.psn declared as ShogiPly
private  ShogiPly PsnFileProcessor.workingPly
           
 

Uses of ShogiPly in net.japanesechess.record
 

Fields in net.japanesechess.record with type parameters of type ShogiPly
private  java.util.ArrayList<ShogiPly> ShogiRecord.movesWithComments
           
 

Methods in net.japanesechess.record that return ShogiPly
 ShogiPly ShogiRecord.getPly(int p)
          zero based
 

Methods in net.japanesechess.record that return types with arguments of type ShogiPly
 java.util.ArrayList<ShogiPly> ShogiRecord.getAllPlies()
           
 

Methods in net.japanesechess.record with parameters of type ShogiPly
 void ShogiRecord.addShogiPly(ShogiPly sp)
          Adds ply notation and tries to process the next board byte[].
 

Uses of ShogiPly in net.japanesechess.util
 

Fields in net.japanesechess.util declared as ShogiPly
private  ShogiPly PlyBoardFactory.currentPly
           
private  ShogiPly PlyBoardFactory.previousPly
           
 

Methods in net.japanesechess.util with parameters of type ShogiPly
 void PlyBoardFactory.generateAndSetBoard(Handicap handicap, byte[] previousBoard, ShogiPly lastPly, ShogiPly newPly, boolean black)
          Generates the board that this ply creates and passes to the ply for use in board displays.
 

Uses of ShogiPly in net.japanesechess.view
 

Fields in net.japanesechess.view with type parameters of type ShogiPly
(package private)  java.util.ArrayList<ShogiPly> MovesModel.moves
           
 

Method parameters in net.japanesechess.view with type arguments of type ShogiPly
 void MovesModel.setArrayList(java.util.ArrayList<ShogiPly> moves)