コード例 #1
0
 /**
  * Jump to the time point when the node with the given id is first shown.
  *
  * @param sNodeID the id of the node to jump to.
  */
 public void jumpToNode(String sNodeID) {
   oTimeLinePanel.jumpToNode(sNodeID);
 }
コード例 #2
0
 /**
  * Start the timeline if it is running.
  *
  * @param recordState true is you want this object to reset the previous play state
  */
 public void startTimeLine(boolean recordState) {
   if (recordState) {
     wasMoviePlaying = false;
   }
   oTimeLinePanel.start();
 }
コード例 #3
0
 /** Is the move maps playing at present. */
 public boolean isPlaying() {
   if (oTimeLinePanel.getController().getPlayerState() == Player.Started) {
     return true;
   }
   return false;
 }
コード例 #4
0
 /**
  * Stop the timeline if it is running.
  *
  * @param recordState true is you want this object to record the previous play state
  */
 public void stopTimeLine(boolean recordState) {
   if (recordState) {
     wasMoviePlaying = true;
   }
   oTimeLinePanel.stop();
 }
コード例 #5
0
 /**
  * Return the time lines controller object
  *
  * @return
  */
 public UITimeLinesController getController() {
   return oTimeLinePanel.getController();
 }