Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.vrspace.client
Class Projector  view Projector download Projector.java

java.lang.Object
  extended byorg.vrspace.util.Console
      extended byorg.vrspace.client.Projector
All Implemented Interfaces:
java.util.Observer, java.lang.Runnable

public class Projector
extends org.vrspace.util.Console


Nested Class Summary
(package private)  class Projector.Frame
           
 
Field Summary
 boolean active
           
static java.lang.String fileName
           
 boolean loop
           
 java.util.Vector movie
           
 float speed
           
private  int step
           
 
Fields inherited from class org.vrspace.util.Console
connection, host, input, login, output, password, port
 
Constructor Summary
Projector()
           
 
Method Summary
 void forward()
           
static void main(java.lang.String[] args)
           
 void print(java.lang.String s)
           
 void reverse()
           
 void run()
          This method will be called by whoever wishes to run your class implementing Runnable.
 void update(java.util.Observable conn, java.lang.Object arg)
          This method is called whenever the observable object changes, and has called notifyObservers.
 
Methods inherited from class org.vrspace.util.Console
attemptLogin, login
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

speed

public float speed

active

public boolean active

movie

public java.util.Vector movie

loop

public boolean loop

fileName

public static java.lang.String fileName

step

private int step
Constructor Detail

Projector

public Projector()
Method Detail

main

public static void main(java.lang.String[] args)

reverse

public void reverse()

forward

public void forward()

print

public void print(java.lang.String s)

update

public void update(java.util.Observable conn,
                   java.lang.Object arg)
Description copied from interface: java.util.Observer
This method is called whenever the observable object changes, and has called notifyObservers. The Observable object can pass arbitrary information in the second parameter.


run

public void run()
Description copied from interface: java.lang.Runnable
This method will be called by whoever wishes to run your class implementing Runnable. Note that there are no restrictions on what you are allowed to do in the run method, except that you cannot throw a checked exception.