alma.asdm.CalPositionRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The CalPositionRow class is a row of a CalPositionTable.

Generated from model's revision 1.41, branch HEAD


Public Member Functions

CalPositionTable getTable ()
 Return the table to which this row belongs.
CalPositionRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (CalPositionRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct CalPositionRowIDL.
String toXML () throws ConversionException
 Return this row in the form of an XML string.
void setFromXML (String rowDoc) throws ConversionException
 Fill the values of this row from an XML string that was produced by the toXML() method.
String getAntennaName ()
 Get antennaName.
void setAntennaName (String antennaName) throws IllegalAccessException
 Set antennaName with the specified String value.
int getNumAntenna ()
 Get numAntenna.
void setNumAntenna (int numAntenna)
 Set numAntenna with the specified int value.
ArrayTime getStartValidTime ()
 Get startValidTime.
void setStartValidTime (ArrayTime startValidTime)
 Set startValidTime with the specified ArrayTime value.
ArrayTime getEndValidTime ()
 Get endValidTime.
void setEndValidTime (ArrayTime endValidTime)
 Set endValidTime with the specified ArrayTime value.
Length[] getPositionOffset ()
 Get positionOffset.
void setPositionOffset (Length[] positionOffset)
 Set positionOffset with the specified Length[] value.
Length[] getPositionErr ()
 Get positionErr.
void setPositionErr (Length[] positionErr)
 Set positionErr with the specified Length[] value.
Interval getDelayRms ()
 Get delayRms.
void setDelayRms (Interval delayRms)
 Set delayRms with the specified Interval value.
Angle getPhaseRms ()
 Get phaseRms.
void setPhaseRms (Angle phaseRms)
 Set phaseRms with the specified Angle value.
Length getAxesOffset ()
 Get axesOffset.
void setAxesOffset (Length axesOffset)
 Set axesOffset with the specified Length value.
boolean getAxesOffsetFixed ()
 Get axesOffsetFixed.
void setAxesOffsetFixed (boolean axesOffsetFixed)
 Set axesOffsetFixed with the specified boolean value.
Length getAxesOffsetErr ()
 Get axesOffsetErr.
void setAxesOffsetErr (Length axesOffsetErr)
 Set axesOffsetErr with the specified Length value.
PositionMethod getPositionMethod ()
 Get positionMethod.
void setPositionMethod (PositionMethod positionMethod)
 Set positionMethod with the specified PositionMethod value.
String[] getRefAntennaNames ()
 Get refAntennaNames.
void setRefAntennaNames (String[] refAntennaNames)
 Set refAntennaNames with the specified String[] value.
String getStationName ()
 Get stationName.
void setStationName (String stationName)
 Set stationName with the specified String value.
Length[] getAntennaPosition ()
 Get antennaPosition.
void setAntennaPosition (Length[] antennaPosition)
 Set antennaPosition with the specified Length[] value.
Length[] getStationPosition ()
 Get stationPosition.
void setStationPosition (Length[] stationPosition)
 Set stationPosition with the specified Length[] value.
Tag getCalDataId ()
 Get calDataId.
void setCalDataId (Tag calDataId) throws IllegalAccessException
 Set calDataId with the specified Tag value.
Tag getCalReductionId ()
 Get calReductionId.
void setCalReductionId (Tag calReductionId) throws IllegalAccessException
 Set calReductionId with the specified Tag value.
CalReductionRow getCalReductionUsingCalReductionId ()
 Returns the pointer to the row in the CalReduction table having CalReduction.calReductionId == calReductionId.
CalDataRow getCalDataUsingCalDataId ()
 Returns the pointer to the row in the CalData table having CalData.calDataId == calDataId.
boolean compareNoAutoInc (Tag calDataId, Tag calReductionId, String antennaName, int numAntenna, ArrayTime startValidTime, ArrayTime endValidTime, Length[] positionOffset, Length[] positionErr, Interval delayRms, Angle phaseRms, Length axesOffset, boolean axesOffsetFixed, Length axesOffsetErr, PositionMethod positionMethod, String[] refAntennaNames, String stationName, Length[] antennaPosition, Length[] stationPosition)
 Compare each attribute except the autoincrementable one of this CalPositionRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (CalPositionRow x)
 Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
boolean compareRequiredValue (int numAntenna, ArrayTime startValidTime, ArrayTime endValidTime, Length[] positionOffset, Length[] positionErr, Interval delayRms, Angle phaseRms, Length axesOffset, boolean axesOffsetFixed, Length axesOffsetErr, PositionMethod positionMethod, String[] refAntennaNames, String stationName, Length[] antennaPosition, Length[] stationPosition)

Package Functions

 CalPositionRow (CalPositionTable table)
 Create a CalPositionRow.
 CalPositionRow (CalPositionTable table, CalPositionRow row)
 Creates a CalPositionRow using a copy constructor mechanism.
void isAdded ()
Object[] getAttributesValues ()
 Returns all the attributes of an attribute of an ASDM table as an array of Object.


Constructor & Destructor Documentation

alma.asdm.CalPositionRow.CalPositionRow ( CalPositionTable  table  )  [package]

Create a CalPositionRow.

This constructor has package access because only the table can create rows. All rows know the table to which they belong.

Parameters:
table The table to which this row belongs.

alma.asdm.CalPositionRow.CalPositionRow ( CalPositionTable  table,
CalPositionRow  row 
) [package]

Creates a CalPositionRow using a copy constructor mechanism.

Given a CalPositionRow row and a CalPositionTable table, the method creates a new CalPositionRow owned by table. Each attribute of the created row is a copy (deep) of the corresponding attribute of row. The method does not add the created row to its table, its simply parents it to table, a call to the add method has to be done in order to get the row added (very likely after having modified some of its attributes). If row is null then the method returns a row with default values for its attributes.

This constructor has package access because only the table can create rows. All rows know the table to which they belong.

Parameters:
table The table to which this row belongs.
row The row which is to be copied.


Member Function Documentation

CalPositionRowIDL alma.asdm.CalPositionRow.toIDL (  ) 

Return this row in the form of an IDL struct.

Returns:
The values of this row as a CalPositionRowIDL struct.

void alma.asdm.CalPositionRow.setFromIDL ( CalPositionRowIDL  x  )  throws ConversionException

Fill the values of this row from the IDL struct CalPositionRowIDL.

Parameters:
x The IDL struct containing the values used to fill this row.

String alma.asdm.CalPositionRow.toXML (  )  throws ConversionException

Return this row in the form of an XML string.

Returns:
The values of this row as an XML string.
Exceptions:
ConversionException. 

void alma.asdm.CalPositionRow.setFromXML ( String  rowDoc  )  throws ConversionException

Fill the values of this row from an XML string that was produced by the toXML() method.

Parameters:
x The XML string being used to set the values of this row.
Exceptions:
ConversionException. 

String alma.asdm.CalPositionRow.getAntennaName (  ) 

Get antennaName.

Returns:
antennaName as String

void alma.asdm.CalPositionRow.setAntennaName ( String  antennaName  )  throws IllegalAccessException

Set antennaName with the specified String value.

Parameters:
antennaName The String value to which antennaName is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

int alma.asdm.CalPositionRow.getNumAntenna (  ) 

Get numAntenna.

Returns:
numAntenna as int

void alma.asdm.CalPositionRow.setNumAntenna ( int  numAntenna  ) 

Set numAntenna with the specified int value.

Parameters:
numAntenna The int value to which numAntenna is to be set.

ArrayTime alma.asdm.CalPositionRow.getStartValidTime (  ) 

Get startValidTime.

Returns:
startValidTime as ArrayTime

void alma.asdm.CalPositionRow.setStartValidTime ( ArrayTime  startValidTime  ) 

Set startValidTime with the specified ArrayTime value.

Parameters:
startValidTime The ArrayTime value to which startValidTime is to be set.

ArrayTime alma.asdm.CalPositionRow.getEndValidTime (  ) 

Get endValidTime.

Returns:
endValidTime as ArrayTime

void alma.asdm.CalPositionRow.setEndValidTime ( ArrayTime  endValidTime  ) 

Set endValidTime with the specified ArrayTime value.

Parameters:
endValidTime The ArrayTime value to which endValidTime is to be set.

Length [] alma.asdm.CalPositionRow.getPositionOffset (  ) 

Get positionOffset.

Returns:
positionOffset as Length[]

void alma.asdm.CalPositionRow.setPositionOffset ( Length[]  positionOffset  ) 

Set positionOffset with the specified Length[] value.

Parameters:
positionOffset The Length[] value to which positionOffset is to be set.

Length [] alma.asdm.CalPositionRow.getPositionErr (  ) 

Get positionErr.

Returns:
positionErr as Length[]

void alma.asdm.CalPositionRow.setPositionErr ( Length[]  positionErr  ) 

Set positionErr with the specified Length[] value.

Parameters:
positionErr The Length[] value to which positionErr is to be set.

Interval alma.asdm.CalPositionRow.getDelayRms (  ) 

Get delayRms.

Returns:
delayRms as Interval

void alma.asdm.CalPositionRow.setDelayRms ( Interval  delayRms  ) 

Set delayRms with the specified Interval value.

Parameters:
delayRms The Interval value to which delayRms is to be set.

Angle alma.asdm.CalPositionRow.getPhaseRms (  ) 

Get phaseRms.

Returns:
phaseRms as Angle

void alma.asdm.CalPositionRow.setPhaseRms ( Angle  phaseRms  ) 

Set phaseRms with the specified Angle value.

Parameters:
phaseRms The Angle value to which phaseRms is to be set.

Length alma.asdm.CalPositionRow.getAxesOffset (  ) 

Get axesOffset.

Returns:
axesOffset as Length

void alma.asdm.CalPositionRow.setAxesOffset ( Length  axesOffset  ) 

Set axesOffset with the specified Length value.

Parameters:
axesOffset The Length value to which axesOffset is to be set.

boolean alma.asdm.CalPositionRow.getAxesOffsetFixed (  ) 

Get axesOffsetFixed.

Returns:
axesOffsetFixed as boolean

void alma.asdm.CalPositionRow.setAxesOffsetFixed ( boolean  axesOffsetFixed  ) 

Set axesOffsetFixed with the specified boolean value.

Parameters:
axesOffsetFixed The boolean value to which axesOffsetFixed is to be set.

Length alma.asdm.CalPositionRow.getAxesOffsetErr (  ) 

Get axesOffsetErr.

Returns:
axesOffsetErr as Length

void alma.asdm.CalPositionRow.setAxesOffsetErr ( Length  axesOffsetErr  ) 

Set axesOffsetErr with the specified Length value.

Parameters:
axesOffsetErr The Length value to which axesOffsetErr is to be set.

PositionMethod alma.asdm.CalPositionRow.getPositionMethod (  ) 

Get positionMethod.

Returns:
positionMethod as PositionMethod

void alma.asdm.CalPositionRow.setPositionMethod ( PositionMethod  positionMethod  ) 

Set positionMethod with the specified PositionMethod value.

Parameters:
positionMethod The PositionMethod value to which positionMethod is to be set.

String [] alma.asdm.CalPositionRow.getRefAntennaNames (  ) 

Get refAntennaNames.

Returns:
refAntennaNames as String[]

void alma.asdm.CalPositionRow.setRefAntennaNames ( String[]  refAntennaNames  ) 

Set refAntennaNames with the specified String[] value.

Parameters:
refAntennaNames The String[] value to which refAntennaNames is to be set.

String alma.asdm.CalPositionRow.getStationName (  ) 

Get stationName.

Returns:
stationName as String

void alma.asdm.CalPositionRow.setStationName ( String  stationName  ) 

Set stationName with the specified String value.

Parameters:
stationName The String value to which stationName is to be set.

Length [] alma.asdm.CalPositionRow.getAntennaPosition (  ) 

Get antennaPosition.

Returns:
antennaPosition as Length[]

void alma.asdm.CalPositionRow.setAntennaPosition ( Length[]  antennaPosition  ) 

Set antennaPosition with the specified Length[] value.

Parameters:
antennaPosition The Length[] value to which antennaPosition is to be set.

Length [] alma.asdm.CalPositionRow.getStationPosition (  ) 

Get stationPosition.

Returns:
stationPosition as Length[]

void alma.asdm.CalPositionRow.setStationPosition ( Length[]  stationPosition  ) 

Set stationPosition with the specified Length[] value.

Parameters:
stationPosition The Length[] value to which stationPosition is to be set.

Tag alma.asdm.CalPositionRow.getCalDataId (  ) 

Get calDataId.

Returns:
calDataId as Tag

void alma.asdm.CalPositionRow.setCalDataId ( Tag  calDataId  )  throws IllegalAccessException

Set calDataId with the specified Tag value.

Parameters:
calDataId The Tag value to which calDataId is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

Tag alma.asdm.CalPositionRow.getCalReductionId (  ) 

Get calReductionId.

Returns:
calReductionId as Tag

void alma.asdm.CalPositionRow.setCalReductionId ( Tag  calReductionId  )  throws IllegalAccessException

Set calReductionId with the specified Tag value.

Parameters:
calReductionId The Tag value to which calReductionId is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

CalReductionRow alma.asdm.CalPositionRow.getCalReductionUsingCalReductionId (  ) 

Returns the pointer to the row in the CalReduction table having CalReduction.calReductionId == calReductionId.

Returns:
a CalReductionRow

CalDataRow alma.asdm.CalPositionRow.getCalDataUsingCalDataId (  ) 

Returns the pointer to the row in the CalData table having CalData.calDataId == calDataId.

Returns:
a CalDataRow

boolean alma.asdm.CalPositionRow.equalByRequiredValue ( CalPositionRow  x  ) 

Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.

Parameters:
x the CalPositionRow whose required attributes of the value part will be compared with those of this.
Returns:
a boolean.

Object [] alma.asdm.CalPositionRow.getAttributesValues (  )  [package, virtual]

Returns all the attributes of an attribute of an ASDM table as an array of Object.

Returns:
an array of Object.

Implements alma.asdm.ASDMRow.


The documentation for this class was generated from the following file:
Generated on Thu Nov 29 16:47:22 2007 for ASDM Java Implementation by  doxygen 1.5.1