alma.asdm.CalWVRRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The CalWVRRow class is a row of a CalWVRTable.

Generated from model's revision 1.41, branch HEAD


Public Member Functions

CalWVRTable getTable ()
 Return the table to which this row belongs.
CalWVRRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (CalWVRRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct CalWVRRowIDL.
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 getNumPoly ()
 Get numPoly.
void setNumPoly (int numPoly)
 Set numPoly with the specified int value.
int getNumChan ()
 Get numChan.
void setNumChan (int numChan)
 Set numChan 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.
WVRMethod getWvrMethod ()
 Get wvrMethod.
void setWvrMethod (WVRMethod wvrMethod)
 Set wvrMethod with the specified WVRMethod value.
Frequency[] getFreqLimits ()
 Get freqLimits.
void setFreqLimits (Frequency[] freqLimits)
 Set freqLimits with the specified Frequency[] value.
float[][][] getPathCoeff ()
 Get pathCoeff.
void setPathCoeff (float[][][] pathCoeff)
 Set pathCoeff with the specified float[][][] value.
Frequency[] getChanFreq ()
 Get chanFreq.
void setChanFreq (Frequency[] chanFreq)
 Set chanFreq with the specified Frequency[] value.
Frequency[] getChanWidth ()
 Get chanWidth.
void setChanWidth (Frequency[] chanWidth)
 Set chanWidth with the specified Frequency[] value.
int getNumInputAntenna ()
 Get numInputAntenna.
void setNumInputAntenna (int numInputAntenna)
 Set numInputAntenna with the specified int value.
String[] getInputAntennaNames ()
 Get inputAntennaNames.
void setInputAntennaNames (String[] inputAntennaNames)
 Set inputAntennaNames with the specified String[] value.
Frequency[] getPolyFreqLimits ()
 Get polyFreqLimits.
void setPolyFreqLimits (Frequency[] polyFreqLimits)
 Set polyFreqLimits with the specified Frequency[] 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.
CalDataRow getCalDataUsingCalDataId ()
 Returns the pointer to the row in the CalData table having CalData.calDataId == calDataId.
CalReductionRow getCalReductionUsingCalReductionId ()
 Returns the pointer to the row in the CalReduction table having CalReduction.calReductionId == calReductionId.
boolean compareNoAutoInc (Tag calDataId, Tag calReductionId, String antennaName, int numPoly, int numChan, ArrayTime startValidTime, ArrayTime endValidTime, WVRMethod wvrMethod, Frequency[] freqLimits, float[][][] pathCoeff, Frequency[] chanFreq, Frequency[] chanWidth, int numInputAntenna, String[] inputAntennaNames, Frequency[] polyFreqLimits)
 Compare each attribute except the autoincrementable one of this CalWVRRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (CalWVRRow x)
 Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
boolean compareRequiredValue (int numPoly, int numChan, ArrayTime startValidTime, ArrayTime endValidTime, WVRMethod wvrMethod, Frequency[] freqLimits, float[][][] pathCoeff, Frequency[] chanFreq, Frequency[] chanWidth, int numInputAntenna, String[] inputAntennaNames, Frequency[] polyFreqLimits)

Package Functions

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

Create a CalWVRRow.

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.CalWVRRow.CalWVRRow ( CalWVRTable  table,
CalWVRRow  row 
) [package]

Creates a CalWVRRow using a copy constructor mechanism.

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

CalWVRRowIDL alma.asdm.CalWVRRow.toIDL (  ) 

Return this row in the form of an IDL struct.

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

void alma.asdm.CalWVRRow.setFromIDL ( CalWVRRowIDL  x  )  throws ConversionException

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

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

String alma.asdm.CalWVRRow.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.CalWVRRow.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.CalWVRRow.getAntennaName (  ) 

Get antennaName.

Returns:
antennaName as String

void alma.asdm.CalWVRRow.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.CalWVRRow.getNumPoly (  ) 

Get numPoly.

Returns:
numPoly as int

void alma.asdm.CalWVRRow.setNumPoly ( int  numPoly  ) 

Set numPoly with the specified int value.

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

int alma.asdm.CalWVRRow.getNumChan (  ) 

Get numChan.

Returns:
numChan as int

void alma.asdm.CalWVRRow.setNumChan ( int  numChan  ) 

Set numChan with the specified int value.

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

ArrayTime alma.asdm.CalWVRRow.getStartValidTime (  ) 

Get startValidTime.

Returns:
startValidTime as ArrayTime

void alma.asdm.CalWVRRow.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.CalWVRRow.getEndValidTime (  ) 

Get endValidTime.

Returns:
endValidTime as ArrayTime

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

Set endValidTime with the specified ArrayTime value.

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

WVRMethod alma.asdm.CalWVRRow.getWvrMethod (  ) 

Get wvrMethod.

Returns:
wvrMethod as WVRMethod

void alma.asdm.CalWVRRow.setWvrMethod ( WVRMethod  wvrMethod  ) 

Set wvrMethod with the specified WVRMethod value.

Parameters:
wvrMethod The WVRMethod value to which wvrMethod is to be set.

Frequency [] alma.asdm.CalWVRRow.getFreqLimits (  ) 

Get freqLimits.

Returns:
freqLimits as Frequency[]

void alma.asdm.CalWVRRow.setFreqLimits ( Frequency[]  freqLimits  ) 

Set freqLimits with the specified Frequency[] value.

Parameters:
freqLimits The Frequency[] value to which freqLimits is to be set.

float [][][] alma.asdm.CalWVRRow.getPathCoeff (  ) 

Get pathCoeff.

Returns:
pathCoeff as float[][][]

void alma.asdm.CalWVRRow.setPathCoeff ( float  pathCoeff[][][]  ) 

Set pathCoeff with the specified float[][][] value.

Parameters:
pathCoeff The float[][][] value to which pathCoeff is to be set.

Frequency [] alma.asdm.CalWVRRow.getChanFreq (  ) 

Get chanFreq.

Returns:
chanFreq as Frequency[]

void alma.asdm.CalWVRRow.setChanFreq ( Frequency[]  chanFreq  ) 

Set chanFreq with the specified Frequency[] value.

Parameters:
chanFreq The Frequency[] value to which chanFreq is to be set.

Frequency [] alma.asdm.CalWVRRow.getChanWidth (  ) 

Get chanWidth.

Returns:
chanWidth as Frequency[]

void alma.asdm.CalWVRRow.setChanWidth ( Frequency[]  chanWidth  ) 

Set chanWidth with the specified Frequency[] value.

Parameters:
chanWidth The Frequency[] value to which chanWidth is to be set.

int alma.asdm.CalWVRRow.getNumInputAntenna (  ) 

Get numInputAntenna.

Returns:
numInputAntenna as int

void alma.asdm.CalWVRRow.setNumInputAntenna ( int  numInputAntenna  ) 

Set numInputAntenna with the specified int value.

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

String [] alma.asdm.CalWVRRow.getInputAntennaNames (  ) 

Get inputAntennaNames.

Returns:
inputAntennaNames as String[]

void alma.asdm.CalWVRRow.setInputAntennaNames ( String[]  inputAntennaNames  ) 

Set inputAntennaNames with the specified String[] value.

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

Frequency [] alma.asdm.CalWVRRow.getPolyFreqLimits (  ) 

Get polyFreqLimits.

Returns:
polyFreqLimits as Frequency[]

void alma.asdm.CalWVRRow.setPolyFreqLimits ( Frequency[]  polyFreqLimits  ) 

Set polyFreqLimits with the specified Frequency[] value.

Parameters:
polyFreqLimits The Frequency[] value to which polyFreqLimits is to be set.

Tag alma.asdm.CalWVRRow.getCalDataId (  ) 

Get calDataId.

Returns:
calDataId as Tag

void alma.asdm.CalWVRRow.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.CalWVRRow.getCalReductionId (  ) 

Get calReductionId.

Returns:
calReductionId as Tag

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

CalDataRow alma.asdm.CalWVRRow.getCalDataUsingCalDataId (  ) 

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

Returns:
a CalDataRow

CalReductionRow alma.asdm.CalWVRRow.getCalReductionUsingCalReductionId (  ) 

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

Returns:
a CalReductionRow

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

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

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

Object [] alma.asdm.CalWVRRow.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:23 2007 for ASDM Java Implementation by  doxygen 1.5.1