stsci.factory
Class PlateFactory

java.lang.Object
  |
  +--stsci.factory.Factory
        |
        +--stsci.factory.WebFactory
              |
              +--stsci.factory.PlateFactory

public class PlateFactory
extends WebFactory


Fields inherited from class stsci.factory.WebFactory
local
 
Fields inherited from class stsci.factory.Factory
dstream, finished, name, opened
 
Constructor Summary
PlateFactory()
           
 
Method Summary
 java.lang.String getCmd()
          The id and different parameters to the command will be differnt for each system.
 java.lang.String getRegions()
           
 java.lang.String getURL()
          The id and different parameters to the web page will be differnt for each system.
 java.lang.Object nextObj()
          The abstract method to consume input from dstream and create the next object.
 void setRegions(java.lang.String regions)
           
 void skipToData()
          Skip down the data stream to where the data is by defulat this is until we hit a PRE tag - but sub-classes may override this.
 
Methods inherited from class stsci.factory.WebFactory
finished, open, openCmd, openURL, setLocal
 
Methods inherited from class stsci.factory.Factory
openDisk, setFinished
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PlateFactory

public PlateFactory()
Method Detail

nextObj

public java.lang.Object nextObj()
                         throws java.lang.Exception
Description copied from class: Factory
The abstract method to consume input from dstream and create the next object. This is specific to the particular type of input and must be implemented by the subclass.
Overrides:
nextObj in class Factory

getURL

public java.lang.String getURL()
Description copied from class: WebFactory
The id and different parameters to the web page will be differnt for each system. This abstarct method will be called to get the URL which should be opened.
Overrides:
getURL in class WebFactory

getCmd

public java.lang.String getCmd()
Description copied from class: WebFactory
The id and different parameters to the command will be differnt for each system. This abstarct method will be called to get the Command which should be executed.
Overrides:
getCmd in class WebFactory

setRegions

public void setRegions(java.lang.String regions)

getRegions

public java.lang.String getRegions()

skipToData

public void skipToData()
Description copied from class: WebFactory
Skip down the data stream to where the data is by defulat this is until we hit a PRE tag - but sub-classes may override this.
Overrides:
skipToData in class WebFactory