alma.asdm.CalDelayRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The CalDelayRow class is a row of a CalDelayTable.

Generated from model's revision 1.46, branch HEAD


Public Member Functions

CalDelayTable getTable ()
 Return the table to which this row belongs.
CalDelayRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (CalDelayRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct CalDelayRowIDL.
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.
BasebandName getBasebandName ()
 Get basebandName.
void setBasebandName (BasebandName basebandName) throws IllegalAccessException
 Set basebandName with the specified BasebandName value.
int getNumReceptor ()
 Get numReceptor.
void setNumReceptor (int numReceptor) throws IllegalAccessException
 Set numReceptor with the specified int value.
String getRefAntennaName ()
 Get refAntennaName.
void setRefAntennaName (String refAntennaName) throws IllegalAccessException
 Set refAntennaName with the specified String value.
ReceiverBand getReceiverBand ()
 Get receiverBand.
void setReceiverBand (ReceiverBand receiverBand) throws IllegalAccessException
 Set receiverBand with the specified ReceiverBand value.
PolarizationType[] getPolarizationTypes ()
 Get polarizationTypes.
void setPolarizationTypes (PolarizationType[] polarizationTypes) throws IllegalAccessException
 Set polarizationTypes with the specified PolarizationType[] value.
ArrayTime getStartValidTime ()
 Get startValidTime.
void setStartValidTime (ArrayTime startValidTime) throws IllegalAccessException
 Set startValidTime with the specified ArrayTime value.
ArrayTime getEndValidTime ()
 Get endValidTime.
void setEndValidTime (ArrayTime endValidTime) throws IllegalAccessException
 Set endValidTime with the specified ArrayTime value.
double[] getDelayOffset ()
 Get delayOffset.
void setDelayOffset (double[] delayOffset) throws IllegalAccessException
 Set delayOffset with the specified double[] value.
double[] getDelayError ()
 Get delayError.
void setDelayError (double[] delayError) throws IllegalAccessException
 Set delayError with the specified double[] value.
double getCrossDelayOffset ()
 Get crossDelayOffset.
void setCrossDelayOffset (double crossDelayOffset) throws IllegalAccessException
 Set crossDelayOffset with the specified double value.
double getCrossDelayOffsetError ()
 Get crossDelayOffsetError.
void setCrossDelayOffsetError (double crossDelayOffsetError) throws IllegalAccessException
 Set crossDelayOffsetError with the specified double 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, BasebandName basebandName, int numReceptor, String refAntennaName, ReceiverBand receiverBand, PolarizationType[] polarizationTypes, ArrayTime startValidTime, ArrayTime endValidTime, double[] delayOffset, double[] delayError, double crossDelayOffset, double crossDelayOffsetError)
 Compare each attribute except the autoincrementable one of this CalDelayRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (CalDelayRow x)
 Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
boolean compareRequiredValue (int numReceptor, String refAntennaName, ReceiverBand receiverBand, PolarizationType[] polarizationTypes, ArrayTime startValidTime, ArrayTime endValidTime, double[] delayOffset, double[] delayError, double crossDelayOffset, double crossDelayOffsetError)

Package Functions

 CalDelayRow (CalDelayTable table)
 Create a CalDelayRow.
 CalDelayRow (CalDelayTable table, CalDelayRow row)
 Creates a CalDelayRow 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.CalDelayRow.CalDelayRow CalDelayTable  table  )  [package]
 

Create a CalDelayRow.

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.CalDelayRow.CalDelayRow CalDelayTable  table,
CalDelayRow  row
[package]
 

Creates a CalDelayRow using a copy constructor mechanism.

Given a CalDelayRow row and a CalDelayTable table, the method creates a new CalDelayRow 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

boolean alma.asdm.CalDelayRow.compareNoAutoInc Tag  calDataId,
Tag  calReductionId,
String  antennaName,
BasebandName  basebandName,
int  numReceptor,
String  refAntennaName,
ReceiverBand  receiverBand,
PolarizationType[]  polarizationTypes,
ArrayTime  startValidTime,
ArrayTime  endValidTime,
double[]  delayOffset,
double[]  delayError,
double  crossDelayOffset,
double  crossDelayOffsetError
 

Compare each attribute except the autoincrementable one of this CalDelayRow with the corresponding parameters and return true if there is a match and false otherwise.

boolean alma.asdm.CalDelayRow.equalByRequiredValue CalDelayRow  x  ) 
 

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

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

String alma.asdm.CalDelayRow.getAntennaName  ) 
 

Get antennaName.

Returns:
antennaName as String

Object [] alma.asdm.CalDelayRow.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.

BasebandName alma.asdm.CalDelayRow.getBasebandName  ) 
 

Get basebandName.

Returns:
basebandName as BasebandName

Tag alma.asdm.CalDelayRow.getCalDataId  ) 
 

Get calDataId.

Returns:
calDataId as Tag

CalDataRow alma.asdm.CalDelayRow.getCalDataUsingCalDataId  ) 
 

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

Returns:
a CalDataRow

Tag alma.asdm.CalDelayRow.getCalReductionId  ) 
 

Get calReductionId.

Returns:
calReductionId as Tag

CalReductionRow alma.asdm.CalDelayRow.getCalReductionUsingCalReductionId  ) 
 

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

Returns:
a CalReductionRow

double alma.asdm.CalDelayRow.getCrossDelayOffset  ) 
 

Get crossDelayOffset.

Returns:
crossDelayOffset as double

double alma.asdm.CalDelayRow.getCrossDelayOffsetError  ) 
 

Get crossDelayOffsetError.

Returns:
crossDelayOffsetError as double

double [] alma.asdm.CalDelayRow.getDelayError  ) 
 

Get delayError.

Returns:
delayError as double[]

double [] alma.asdm.CalDelayRow.getDelayOffset  ) 
 

Get delayOffset.

Returns:
delayOffset as double[]

ArrayTime alma.asdm.CalDelayRow.getEndValidTime  ) 
 

Get endValidTime.

Returns:
endValidTime as ArrayTime

int alma.asdm.CalDelayRow.getNumReceptor  ) 
 

Get numReceptor.

Returns:
numReceptor as int

PolarizationType [] alma.asdm.CalDelayRow.getPolarizationTypes  ) 
 

Get polarizationTypes.

Returns:
polarizationTypes as PolarizationType[]

ReceiverBand alma.asdm.CalDelayRow.getReceiverBand  ) 
 

Get receiverBand.

Returns:
receiverBand as ReceiverBand

String alma.asdm.CalDelayRow.getRefAntennaName  ) 
 

Get refAntennaName.

Returns:
refAntennaName as String

ArrayTime alma.asdm.CalDelayRow.getStartValidTime  ) 
 

Get startValidTime.

Returns:
startValidTime as ArrayTime

CalDelayTable alma.asdm.CalDelayRow.getTable  ) 
 

Return the table to which this row belongs.

void alma.asdm.CalDelayRow.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.

void alma.asdm.CalDelayRow.setBasebandName BasebandName  basebandName  )  throws IllegalAccessException
 

Set basebandName with the specified BasebandName value.

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

void alma.asdm.CalDelayRow.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.

void alma.asdm.CalDelayRow.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.

void alma.asdm.CalDelayRow.setCrossDelayOffset double  crossDelayOffset  )  throws IllegalAccessException
 

Set crossDelayOffset with the specified double value.

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

void alma.asdm.CalDelayRow.setCrossDelayOffsetError double  crossDelayOffsetError  )  throws IllegalAccessException
 

Set crossDelayOffsetError with the specified double value.

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

void alma.asdm.CalDelayRow.setDelayError double[]  delayError  )  throws IllegalAccessException
 

Set delayError with the specified double[] value.

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

void alma.asdm.CalDelayRow.setDelayOffset double[]  delayOffset  )  throws IllegalAccessException
 

Set delayOffset with the specified double[] value.

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

void alma.asdm.CalDelayRow.setEndValidTime ArrayTime  endValidTime  )  throws IllegalAccessException
 

Set endValidTime with the specified ArrayTime value.

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

void alma.asdm.CalDelayRow.setFromIDL CalDelayRowIDL  x  )  throws ConversionException
 

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

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

void alma.asdm.CalDelayRow.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. 

void alma.asdm.CalDelayRow.setNumReceptor int  numReceptor  )  throws IllegalAccessException
 

Set numReceptor with the specified int value.

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

void alma.asdm.CalDelayRow.setPolarizationTypes PolarizationType[]  polarizationTypes  )  throws IllegalAccessException
 

Set polarizationTypes with the specified PolarizationType[] value.

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

void alma.asdm.CalDelayRow.setReceiverBand ReceiverBand  receiverBand  )  throws IllegalAccessException
 

Set receiverBand with the specified ReceiverBand value.

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

void alma.asdm.CalDelayRow.setRefAntennaName String  refAntennaName  )  throws IllegalAccessException
 

Set refAntennaName with the specified String value.

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

void alma.asdm.CalDelayRow.setStartValidTime ArrayTime  startValidTime  )  throws IllegalAccessException
 

Set startValidTime with the specified ArrayTime value.

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

CalDelayRowIDL alma.asdm.CalDelayRow.toIDL  ) 
 

Return this row in the form of an IDL struct.

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

String alma.asdm.CalDelayRow.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. 


The documentation for this class was generated from the following file:
Generated on Tue Nov 18 17:46:44 2008 for ASDM Java Implementation by doxygen 1.3.8