stella.command
Class FindAdapter

java.lang.Object
  extended by java.util.EventObject
      extended by util.rmi.RmiEvent
          extended by stella.MessageEvent
              extended by stella.CommandEvent
                  extended by stella.command.FindAdapter
All Implemented Interfaces:
Serializable, AdapterCommand, TargetDependingCommand

public class FindAdapter
extends CommandEvent
implements AdapterCommand, TargetDependingCommand

The find command. It is an adapter command because the field-of-view camera is part of the adapter. This command provides a list of stars expected within the field of view. Each star is listed on a command line with its current position, brightness (Johnson V) and color index B-V. The first star in the list is always the target star.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class stella.CommandEvent
CommandEvent.Create
 
Field Summary
private  float[] bv
          The B-V color index.
private  double[] dec
          The declination of the stars, actual equinox, in degrees.
private  float[] mag
          The Johnson V star brightnesses, in magnitudes.
private  double[] ra
          The right ascension of the stars, actual equinox, in degrees.
 
Fields inherited from class stella.CommandEvent
COMMANDPACKAGE, JVIEWPACKAGE, TYPESEPARATOR
 
Fields inherited from class stella.MessageEvent
SEPCHAR
 
Fields inherited from class util.rmi.RmiEvent
localHost, sourceName
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
FindAdapter(Object src)
          Constructs a abort adapter telescope, grabbing the type from the class name and setting the command time to the current system time.
FindAdapter(Object src, String type, long time)
          Constructs a move telescope command.
 
Method Summary
 float[] getBV()
          Returns the color index B-V of the field-of-view stars.
 double[] getDec()
          Returns the declination of the field-of-view stars.
 String[] getLine()
          Returns the command line of the move telescope command.
 float[] getMag()
          Returns the V-magnitude of the field-of-view stars.
 double[] getRa()
          Returns the right ascension of the field-of-view stars.
 boolean parseLine(String[] all)
          Parse the command line into ra and dec of the move command.
 void registerTargetProperties(Object view)
          Calculates the command line from the properties.
 
Methods inherited from class stella.CommandEvent
classNameToTemplate, createCommand, createCommand, createJCommand, extractType, getExpectedAcknowledgeNumber, parseForStrings, templateToClassName
 
Methods inherited from class stella.MessageEvent
checkType, equals, equalTime, equalTime, fromAscii, getAllCommandLines, getExecuteGroupKey, getHead, getNr, getTime, getType, hashCode, isValid, parseFromSingleString, readFromBufferedStream, setNr, setTime, setType, setValid, toString
 
Methods inherited from class util.rmi.RmiEvent
getHost, getSourceName, setSourceName
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

ra

private double[] ra
The right ascension of the stars, actual equinox, in degrees.


dec

private double[] dec
The declination of the stars, actual equinox, in degrees.


mag

private float[] mag
The Johnson V star brightnesses, in magnitudes.


bv

private float[] bv
The B-V color index.

Constructor Detail

FindAdapter

public FindAdapter(Object src)
Constructs a abort adapter telescope, grabbing the type from the class name and setting the command time to the current system time.


FindAdapter

public FindAdapter(Object src,
                   String type,
                   long time)
Constructs a move telescope command. Only the header is fully qualified with the provided argumnets. The command line can only be retrieved after a DTDConstants.OBJECT element has been registered to this command.

See Also:
MessageEvent.isValid()
Method Detail

registerTargetProperties

public void registerTargetProperties(Object view)
Calculates the command line from the properties. For this command, the map handed over must be a StarDescription with an additional key ReservedConstants.FOV. The value mapped to this key is a list of StarDescription objects, each representing a star in the field of view. Note that the first entry in this list is always the target star.

Specified by:
registerTargetProperties in interface TargetDependingCommand

getLine

public String[] getLine()
Returns the command line of the move telescope command.

Specified by:
getLine in class MessageEvent
Returns:
An array containing all command lines.

parseLine

public boolean parseLine(String[] all)
Parse the command line into ra and dec of the move command.

Specified by:
parseLine in class MessageEvent
Returns:
True, if parsing was successful.

getRa

public double[] getRa()
Returns the right ascension of the field-of-view stars. The first array element is always the target star.


getDec

public double[] getDec()
Returns the declination of the field-of-view stars. The first array element is always the target star.


getMag

public float[] getMag()
Returns the V-magnitude of the field-of-view stars. The first array element is always the target star.


getBV

public float[] getBV()
Returns the color index B-V of the field-of-view stars. The first array element is always the target star.