alma.asdm.CalBandpassRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The CalBandpassRow class is a row of a CalBandpassTable.

Generated from model's revision 1.46, branch HEAD


Public Member Functions

CalBandpassTable getTable ()
 Return the table to which this row belongs.
CalBandpassRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (CalBandpassRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct CalBandpassRowIDL.
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.
BasebandName getBasebandName ()
 Get basebandName.
void setBasebandName (BasebandName basebandName) throws IllegalAccessException
 Set basebandName with the specified BasebandName value.
int getNumAntenna ()
 Get numAntenna.
void setNumAntenna (int numAntenna) throws IllegalAccessException
 Set numAntenna with the specified int value.
int getNumBaseline ()
 Get numBaseline.
void setNumBaseline (int numBaseline) throws IllegalAccessException
 Set numBaseline with the specified int value.
int getNumAPC ()
 Get numAPC.
void setNumAPC (int numAPC) throws IllegalAccessException
 Set numAPC with the specified int value.
int getNumReceptor ()
 Get numReceptor.
void setNumReceptor (int numReceptor) throws IllegalAccessException
 Set numReceptor with the specified int 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.
Frequency[] getFreqLimits ()
 Get freqLimits.
void setFreqLimits (Frequency[] freqLimits) throws IllegalAccessException
 Set freqLimits with the specified Frequency[] value.
ReceiverBand getReceiverBand ()
 Get receiverBand.
void setReceiverBand (ReceiverBand receiverBand) throws IllegalAccessException
 Set receiverBand with the specified ReceiverBand value.
String[] getAntennaNames ()
 Get antennaNames.
void setAntennaNames (String[] antennaNames) throws IllegalAccessException
 Set antennaNames with the specified String[] value.
String getRefAntennaName ()
 Get refAntennaName.
void setRefAntennaName (String refAntennaName) throws IllegalAccessException
 Set refAntennaName with the specified String value.
AtmPhaseCorrection[] getAtmPhaseCorrections ()
 Get atmPhaseCorrections.
void setAtmPhaseCorrections (AtmPhaseCorrection[] atmPhaseCorrections) throws IllegalAccessException
 Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.
PolarizationType[] getPolarizationTypes ()
 Get polarizationTypes.
void setPolarizationTypes (PolarizationType[] polarizationTypes) throws IllegalAccessException
 Set polarizationTypes with the specified PolarizationType[] value.
int getNumAmpliPoly ()
 Get numAmpliPoly.
void setNumAmpliPoly (int numAmpliPoly) throws IllegalAccessException
 Set numAmpliPoly with the specified int value.
float[][][][] getAmpliCurve ()
 Get ampliCurve.
void setAmpliCurve (float[][][][] ampliCurve) throws IllegalAccessException
 Set ampliCurve with the specified float[][][][] value.
float[][][] getAmpliRms ()
 Get ampliRms.
void setAmpliRms (float[][][] ampliRms) throws IllegalAccessException
 Set ampliRms with the specified float[][][] value.
int getNumPhasePoly ()
 Get numPhasePoly.
void setNumPhasePoly (int numPhasePoly) throws IllegalAccessException
 Set numPhasePoly with the specified int value.
Angle[][][][] getPhaseCurve ()
 Get phaseCurve.
void setPhaseCurve (Angle[][][][] phaseCurve) throws IllegalAccessException
 Set phaseCurve with the specified Angle[][][][] value.
float[][][] getPhaseRms ()
 Get phaseRms.
void setPhaseRms (float[][][] phaseRms) throws IllegalAccessException
 Set phaseRms 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.
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, BasebandName basebandName, int numAntenna, int numBaseline, int numAPC, int numReceptor, ArrayTime startValidTime, ArrayTime endValidTime, Frequency[] freqLimits, ReceiverBand receiverBand, String[] antennaNames, String refAntennaName, AtmPhaseCorrection[] atmPhaseCorrections, PolarizationType[] polarizationTypes, int numAmpliPoly, float[][][][] ampliCurve, float[][][] ampliRms, int numPhasePoly, Angle[][][][] phaseCurve, float[][][] phaseRms)
 Compare each attribute except the autoincrementable one of this CalBandpassRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (CalBandpassRow 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, ArrayTime startValidTime, ArrayTime endValidTime, Frequency[] freqLimits, ReceiverBand receiverBand, String[] antennaNames, String refAntennaName, AtmPhaseCorrection[] atmPhaseCorrections, PolarizationType[] polarizationTypes, int numAmpliPoly, float[][][][] ampliCurve, float[][][] ampliRms, int numPhasePoly, Angle[][][][] phaseCurve, float[][][] phaseRms)

Package Functions

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

Create a CalBandpassRow.

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.CalBandpassRow.CalBandpassRow CalBandpassTable  table,
CalBandpassRow  row
[package]
 

Creates a CalBandpassRow using a copy constructor mechanism.

Given a CalBandpassRow row and a CalBandpassTable table, the method creates a new CalBandpassRow 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.CalBandpassRow.compareNoAutoInc Tag  calDataId,
Tag  calReductionId,
BasebandName  basebandName,
int  numAntenna,
int  numBaseline,
int  numAPC,
int  numReceptor,
ArrayTime  startValidTime,
ArrayTime  endValidTime,
Frequency[]  freqLimits,
ReceiverBand  receiverBand,
String[]  antennaNames,
String  refAntennaName,
AtmPhaseCorrection[]  atmPhaseCorrections,
PolarizationType[]  polarizationTypes,
int  numAmpliPoly,
float  ampliCurve[][][][],
float  ampliRms[][][],
int  numPhasePoly,
Angle  phaseCurve[][][][],
float  phaseRms[][][]
 

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

boolean alma.asdm.CalBandpassRow.equalByRequiredValue CalBandpassRow  x  ) 
 

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

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

float [][][][] alma.asdm.CalBandpassRow.getAmpliCurve  ) 
 

Get ampliCurve.

Returns:
ampliCurve as float[][][][]

float [][][] alma.asdm.CalBandpassRow.getAmpliRms  ) 
 

Get ampliRms.

Returns:
ampliRms as float[][][]

String [] alma.asdm.CalBandpassRow.getAntennaNames  ) 
 

Get antennaNames.

Returns:
antennaNames as String[]

AtmPhaseCorrection [] alma.asdm.CalBandpassRow.getAtmPhaseCorrections  ) 
 

Get atmPhaseCorrections.

Returns:
atmPhaseCorrections as AtmPhaseCorrection[]

Object [] alma.asdm.CalBandpassRow.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.CalBandpassRow.getBasebandName  ) 
 

Get basebandName.

Returns:
basebandName as BasebandName

Tag alma.asdm.CalBandpassRow.getCalDataId  ) 
 

Get calDataId.

Returns:
calDataId as Tag

CalDataRow alma.asdm.CalBandpassRow.getCalDataUsingCalDataId  ) 
 

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

Returns:
a CalDataRow

Tag alma.asdm.CalBandpassRow.getCalReductionId  ) 
 

Get calReductionId.

Returns:
calReductionId as Tag

CalReductionRow alma.asdm.CalBandpassRow.getCalReductionUsingCalReductionId  ) 
 

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

Returns:
a CalReductionRow

ArrayTime alma.asdm.CalBandpassRow.getEndValidTime  ) 
 

Get endValidTime.

Returns:
endValidTime as ArrayTime

Frequency [] alma.asdm.CalBandpassRow.getFreqLimits  ) 
 

Get freqLimits.

Returns:
freqLimits as Frequency[]

int alma.asdm.CalBandpassRow.getNumAmpliPoly  ) 
 

Get numAmpliPoly.

Returns:
numAmpliPoly as int

int alma.asdm.CalBandpassRow.getNumAntenna  ) 
 

Get numAntenna.

Returns:
numAntenna as int

int alma.asdm.CalBandpassRow.getNumAPC  ) 
 

Get numAPC.

Returns:
numAPC as int

int alma.asdm.CalBandpassRow.getNumBaseline  ) 
 

Get numBaseline.

Returns:
numBaseline as int

int alma.asdm.CalBandpassRow.getNumPhasePoly  ) 
 

Get numPhasePoly.

Returns:
numPhasePoly as int

int alma.asdm.CalBandpassRow.getNumReceptor  ) 
 

Get numReceptor.

Returns:
numReceptor as int

Angle [][][][] alma.asdm.CalBandpassRow.getPhaseCurve  ) 
 

Get phaseCurve.

Returns:
phaseCurve as Angle[][][][]

float [][][] alma.asdm.CalBandpassRow.getPhaseRms  ) 
 

Get phaseRms.

Returns:
phaseRms as float[][][]

PolarizationType [] alma.asdm.CalBandpassRow.getPolarizationTypes  ) 
 

Get polarizationTypes.

Returns:
polarizationTypes as PolarizationType[]

ReceiverBand alma.asdm.CalBandpassRow.getReceiverBand  ) 
 

Get receiverBand.

Returns:
receiverBand as ReceiverBand

String alma.asdm.CalBandpassRow.getRefAntennaName  ) 
 

Get refAntennaName.

Returns:
refAntennaName as String

ArrayTime alma.asdm.CalBandpassRow.getStartValidTime  ) 
 

Get startValidTime.

Returns:
startValidTime as ArrayTime

CalBandpassTable alma.asdm.CalBandpassRow.getTable  ) 
 

Return the table to which this row belongs.

void alma.asdm.CalBandpassRow.setAmpliCurve float  ampliCurve[][][][]  )  throws IllegalAccessException
 

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

Parameters:
ampliCurve The float[][][][] value to which ampliCurve 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.CalBandpassRow.setAmpliRms float  ampliRms[][][]  )  throws IllegalAccessException
 

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

Parameters:
ampliRms The float[][][] value to which ampliRms 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.CalBandpassRow.setAntennaNames String[]  antennaNames  )  throws IllegalAccessException
 

Set antennaNames with the specified String[] value.

Parameters:
antennaNames The String[] value to which antennaNames 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.CalBandpassRow.setAtmPhaseCorrections AtmPhaseCorrection[]  atmPhaseCorrections  )  throws IllegalAccessException
 

Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.

Parameters:
atmPhaseCorrections The AtmPhaseCorrection[] value to which atmPhaseCorrections 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.CalBandpassRow.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.CalBandpassRow.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.CalBandpassRow.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.CalBandpassRow.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.CalBandpassRow.setFreqLimits Frequency[]  freqLimits  )  throws IllegalAccessException
 

Set freqLimits with the specified Frequency[] value.

Parameters:
freqLimits The Frequency[] value to which freqLimits 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.CalBandpassRow.setFromIDL CalBandpassRowIDL  x  )  throws ConversionException
 

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

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

void alma.asdm.CalBandpassRow.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.CalBandpassRow.setNumAmpliPoly int  numAmpliPoly  )  throws IllegalAccessException
 

Set numAmpliPoly with the specified int value.

Parameters:
numAmpliPoly The int value to which numAmpliPoly 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.CalBandpassRow.setNumAntenna int  numAntenna  )  throws IllegalAccessException
 

Set numAntenna with the specified int value.

Parameters:
numAntenna The int value to which numAntenna 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.CalBandpassRow.setNumAPC int  numAPC  )  throws IllegalAccessException
 

Set numAPC with the specified int value.

Parameters:
numAPC The int value to which numAPC 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.CalBandpassRow.setNumBaseline int  numBaseline  )  throws IllegalAccessException
 

Set numBaseline with the specified int value.

Parameters:
numBaseline The int value to which numBaseline 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.CalBandpassRow.setNumPhasePoly int  numPhasePoly  )  throws IllegalAccessException
 

Set numPhasePoly with the specified int value.

Parameters:
numPhasePoly The int value to which numPhasePoly 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.CalBandpassRow.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.CalBandpassRow.setPhaseCurve Angle  phaseCurve[][][][]  )  throws IllegalAccessException
 

Set phaseCurve with the specified Angle[][][][] value.

Parameters:
phaseCurve The Angle[][][][] value to which phaseCurve 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.CalBandpassRow.setPhaseRms float  phaseRms[][][]  )  throws IllegalAccessException
 

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

Parameters:
phaseRms The float[][][] value to which phaseRms 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.CalBandpassRow.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.CalBandpassRow.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.CalBandpassRow.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.CalBandpassRow.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.

CalBandpassRowIDL alma.asdm.CalBandpassRow.toIDL  ) 
 

Return this row in the form of an IDL struct.

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

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