Uses of Class
pivot.wtk.media.Movie

Packages that use Movie
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.media Contains classes that provide multimedia support. 
pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of Movie in pivot.wtk
 

Methods in pivot.wtk that return Movie
 Movie MovieView.getMovie()
          Returns the movie view's current movie.
 

Methods in pivot.wtk with parameters of type Movie
 void MovieViewListener.movieChanged(MovieView movieView, Movie previousMovie)
          Called when an movie view's movie has changed.
 void MovieView.setMovie(Movie movie)
          Sets the movie view's current movie.
 

Constructors in pivot.wtk with parameters of type Movie
MovieView(Movie movie)
          Creates an movie view with the given movie.
 

Uses of Movie in pivot.wtk.media
 

Methods in pivot.wtk.media with parameters of type Movie
 void Movie.MovieListenerList.currentFrameChanged(Movie movie, int previousFrame)
           
 void MovieListener.currentFrameChanged(Movie movie, int previousFrame)
          Called when the movie's current frame changed.
 void MovieListener.Adapter.currentFrameChanged(Movie movie, int previousFrame)
           
 void Movie.MovieListenerList.loopingChanged(Movie movie)
           
 void MovieListener.loopingChanged(Movie movie)
          Called when the movie's looping property changed.
 void MovieListener.Adapter.loopingChanged(Movie movie)
           
 void Movie.MovieListenerList.movieStarted(Movie movie)
           
 void MovieListener.movieStarted(Movie movie)
          Called when the movie begins playing.
 void MovieListener.Adapter.movieStarted(Movie movie)
           
 void Movie.MovieListenerList.movieStopped(Movie movie)
           
 void MovieListener.movieStopped(Movie movie)
          Called when the movie stops playing.
 void MovieListener.Adapter.movieStopped(Movie movie)
           
 void Movie.MovieListenerList.regionUpdated(Movie movie, int x, int y, int width, int height)
           
 void MovieListener.regionUpdated(Movie movie, int x, int y, int width, int height)
          Called when a region within a movie needs to be repainted.
 void MovieListener.Adapter.regionUpdated(Movie movie, int x, int y, int width, int height)
           
 void Movie.MovieListenerList.sizeChanged(Movie movie, int previousWidth, int previousHeight)
           
 void MovieListener.sizeChanged(Movie movie, int previousWidth, int previousHeight)
          Called when a movie's size has changed.
 void MovieListener.Adapter.sizeChanged(Movie movie, int previousWidth, int previousHeight)
           
 

Uses of Movie in pivot.wtk.skin
 

Methods in pivot.wtk.skin with parameters of type Movie
 void MovieViewSkin.movieChanged(MovieView movieView, Movie previousMovie)