alma.asdm.CalCurveRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The CalCurveRow class is a row of a CalCurveTable.

Generated from model's revision 1.41, branch HEAD


Public Member Functions

CalCurveTable getTable ()
 Return the table to which this row belongs.
CalCurveRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (CalCurveRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct CalCurveRowIDL.
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.
int getNumAntenna ()
 Get numAntenna.
void setNumAntenna (int numAntenna)
 Set numAntenna with the specified int value.
int getNumBaseline ()
 Get numBaseline.
void setNumBaseline (int numBaseline)
 Set numBaseline with the specified int value.
int getNumAPC ()
 Get numAPC.
void setNumAPC (int numAPC)
 Set numAPC with the specified int value.
int getNumReceptor ()
 Get numReceptor.
void setNumReceptor (int numReceptor)
 Set numReceptor with the specified int value.
int getNumPoly ()
 Get numPoly.
void setNumPoly (int numPoly)
 Set numPoly with the specified int value.
String[] getAntennaNames ()
 Get antennaNames.
void setAntennaNames (String[] antennaNames)
 Set antennaNames with the specified String[] value.
String getRefAntennaName ()
 Get refAntennaName.
void setRefAntennaName (String refAntennaName)
 Set refAntennaName with the specified String value.
ReceiverBand getReceiverBand ()
 Get receiverBand.
void setReceiverBand (ReceiverBand receiverBand)
 Set receiverBand with the specified ReceiverBand value.
AtmPhaseCorrection[] getAtmPhaseCorrections ()
 Get atmPhaseCorrections.
void setAtmPhaseCorrections (AtmPhaseCorrection[] atmPhaseCorrections)
 Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.
PolarizationType[] getPolarizationTypes ()
 Get polarizationTypes.
void setPolarizationTypes (PolarizationType[] polarizationTypes)
 Set polarizationTypes with the specified PolarizationType[] 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.
Frequency[] getFrequencyRange ()
 Get frequencyRange.
void setFrequencyRange (Frequency[] frequencyRange)
 Set frequencyRange with the specified Frequency[] value.
CalCurveType getTypeCurve ()
 Get typeCurve.
void setTypeCurve (CalCurveType typeCurve)
 Set typeCurve with the specified CalCurveType value.
ArrayTime getTimeOrigin ()
 Get timeOrigin.
void setTimeOrigin (ArrayTime timeOrigin)
 Set timeOrigin with the specified ArrayTime value.
float[][][][] getCurve ()
 Get curve.
void setCurve (float[][][][] curve)
 Set curve with the specified float[][][][] value.
float[][][] getRms ()
 Get rms.
void setRms (float[][][] rms)
 Set rms with the specified float[][][] 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, int numAntenna, int numBaseline, int numAPC, int numReceptor, int numPoly, String[] antennaNames, String refAntennaName, ReceiverBand receiverBand, AtmPhaseCorrection[] atmPhaseCorrections, PolarizationType[] polarizationTypes, ArrayTime startValidTime, ArrayTime endValidTime, Frequency[] frequencyRange, CalCurveType typeCurve, ArrayTime timeOrigin, float[][][][] curve, float[][][] rms)
 Compare each attribute except the autoincrementable one of this CalCurveRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (CalCurveRow 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, int numBaseline, int numAPC, int numReceptor, int numPoly, String[] antennaNames, String refAntennaName, ReceiverBand receiverBand, AtmPhaseCorrection[] atmPhaseCorrections, PolarizationType[] polarizationTypes, ArrayTime startValidTime, ArrayTime endValidTime, Frequency[] frequencyRange, CalCurveType typeCurve, ArrayTime timeOrigin, float[][][][] curve, float[][][] rms)

Package Functions

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

Create a CalCurveRow.

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

Creates a CalCurveRow using a copy constructor mechanism.

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

CalCurveRowIDL alma.asdm.CalCurveRow.toIDL (  ) 

Return this row in the form of an IDL struct.

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

void alma.asdm.CalCurveRow.setFromIDL ( CalCurveRowIDL  x  )  throws ConversionException

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

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

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

int alma.asdm.CalCurveRow.getNumAntenna (  ) 

Get numAntenna.

Returns:
numAntenna as int

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

Set numAntenna with the specified int value.

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

int alma.asdm.CalCurveRow.getNumBaseline (  ) 

Get numBaseline.

Returns:
numBaseline as int

void alma.asdm.CalCurveRow.setNumBaseline ( int  numBaseline  ) 

Set numBaseline with the specified int value.

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

int alma.asdm.CalCurveRow.getNumAPC (  ) 

Get numAPC.

Returns:
numAPC as int

void alma.asdm.CalCurveRow.setNumAPC ( int  numAPC  ) 

Set numAPC with the specified int value.

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

int alma.asdm.CalCurveRow.getNumReceptor (  ) 

Get numReceptor.

Returns:
numReceptor as int

void alma.asdm.CalCurveRow.setNumReceptor ( int  numReceptor  ) 

Set numReceptor with the specified int value.

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

int alma.asdm.CalCurveRow.getNumPoly (  ) 

Get numPoly.

Returns:
numPoly as int

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

Set numPoly with the specified int value.

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

String [] alma.asdm.CalCurveRow.getAntennaNames (  ) 

Get antennaNames.

Returns:
antennaNames as String[]

void alma.asdm.CalCurveRow.setAntennaNames ( String[]  antennaNames  ) 

Set antennaNames with the specified String[] value.

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

String alma.asdm.CalCurveRow.getRefAntennaName (  ) 

Get refAntennaName.

Returns:
refAntennaName as String

void alma.asdm.CalCurveRow.setRefAntennaName ( String  refAntennaName  ) 

Set refAntennaName with the specified String value.

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

ReceiverBand alma.asdm.CalCurveRow.getReceiverBand (  ) 

Get receiverBand.

Returns:
receiverBand as ReceiverBand

void alma.asdm.CalCurveRow.setReceiverBand ( ReceiverBand  receiverBand  ) 

Set receiverBand with the specified ReceiverBand value.

Parameters:
receiverBand The ReceiverBand value to which receiverBand is to be set.

AtmPhaseCorrection [] alma.asdm.CalCurveRow.getAtmPhaseCorrections (  ) 

Get atmPhaseCorrections.

Returns:
atmPhaseCorrections as AtmPhaseCorrection[]

void alma.asdm.CalCurveRow.setAtmPhaseCorrections ( AtmPhaseCorrection[]  atmPhaseCorrections  ) 

Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.

Parameters:
atmPhaseCorrections The AtmPhaseCorrection[] value to which atmPhaseCorrections is to be set.

PolarizationType [] alma.asdm.CalCurveRow.getPolarizationTypes (  ) 

Get polarizationTypes.

Returns:
polarizationTypes as PolarizationType[]

void alma.asdm.CalCurveRow.setPolarizationTypes ( PolarizationType[]  polarizationTypes  ) 

Set polarizationTypes with the specified PolarizationType[] value.

Parameters:
polarizationTypes The PolarizationType[] value to which polarizationTypes is to be set.

ArrayTime alma.asdm.CalCurveRow.getStartValidTime (  ) 

Get startValidTime.

Returns:
startValidTime as ArrayTime

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

Get endValidTime.

Returns:
endValidTime as ArrayTime

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

Set endValidTime with the specified ArrayTime value.

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

Frequency [] alma.asdm.CalCurveRow.getFrequencyRange (  ) 

Get frequencyRange.

Returns:
frequencyRange as Frequency[]

void alma.asdm.CalCurveRow.setFrequencyRange ( Frequency[]  frequencyRange  ) 

Set frequencyRange with the specified Frequency[] value.

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

CalCurveType alma.asdm.CalCurveRow.getTypeCurve (  ) 

Get typeCurve.

Returns:
typeCurve as CalCurveType

void alma.asdm.CalCurveRow.setTypeCurve ( CalCurveType  typeCurve  ) 

Set typeCurve with the specified CalCurveType value.

Parameters:
typeCurve The CalCurveType value to which typeCurve is to be set.

ArrayTime alma.asdm.CalCurveRow.getTimeOrigin (  ) 

Get timeOrigin.

Returns:
timeOrigin as ArrayTime

void alma.asdm.CalCurveRow.setTimeOrigin ( ArrayTime  timeOrigin  ) 

Set timeOrigin with the specified ArrayTime value.

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

float [][][][] alma.asdm.CalCurveRow.getCurve (  ) 

Get curve.

Returns:
curve as float[][][][]

void alma.asdm.CalCurveRow.setCurve ( float  curve[][][][]  ) 

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

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

float [][][] alma.asdm.CalCurveRow.getRms (  ) 

Get rms.

Returns:
rms as float[][][]

void alma.asdm.CalCurveRow.setRms ( float  rms[][][]  ) 

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

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

Tag alma.asdm.CalCurveRow.getCalDataId (  ) 

Get calDataId.

Returns:
calDataId as Tag

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

Get calReductionId.

Returns:
calReductionId as Tag

void alma.asdm.CalCurveRow.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.CalCurveRow.getCalDataUsingCalDataId (  ) 

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

Returns:
a CalDataRow

CalReductionRow alma.asdm.CalCurveRow.getCalReductionUsingCalReductionId (  ) 

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

Returns:
a CalReductionRow

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

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

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

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