Generated from model's revision 1.46, 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) 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. | |
int | getNumPoly () |
Get numPoly. | |
void | setNumPoly (int numPoly) throws IllegalAccessException |
Set numPoly with the specified int 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. | |
ReceiverBand | getReceiverBand () |
Get receiverBand. | |
void | setReceiverBand (ReceiverBand receiverBand) throws IllegalAccessException |
Set receiverBand with the specified ReceiverBand 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. | |
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[] | getFrequencyRange () |
Get frequencyRange. | |
void | setFrequencyRange (Frequency[] frequencyRange) throws IllegalAccessException |
Set frequencyRange with the specified Frequency[] value. | |
CalCurveType | getTypeCurve () |
Get typeCurve. | |
void | setTypeCurve (CalCurveType typeCurve) throws IllegalAccessException |
Set typeCurve with the specified CalCurveType value. | |
ArrayTime | getTimeOrigin () |
Get timeOrigin. | |
void | setTimeOrigin (ArrayTime timeOrigin) throws IllegalAccessException |
Set timeOrigin with the specified ArrayTime value. | |
float[][][][] | getCurve () |
Get curve. | |
void | setCurve (float[][][][] curve) throws IllegalAccessException |
Set curve with the specified float[][][][] value. | |
float[][][] | getRms () |
Get rms. | |
void | setRms (float[][][] rms) throws IllegalAccessException |
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. |
|
Create a CalCurveRow. This constructor has package access because only the table can create rows. All rows know the table to which they belong.
|
|
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.
|
|
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.
|
|
Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
|
|
Get antennaNames.
|
|
Get atmPhaseCorrections.
|
|
Returns all the attributes of an attribute of an ASDM table as an array of Object.
Implements alma.asdm.ASDMRow.
|
|
Get calDataId.
|
|
Returns the pointer to the row in the CalData table having CalData.calDataId == calDataId.
|
|
Get calReductionId.
|
|
Returns the pointer to the row in the CalReduction table having CalReduction.calReductionId == calReductionId.
|
|
Get curve.
|
|
Get endValidTime.
|
|
Get frequencyRange.
|
|
Get numAntenna.
|
|
Get numAPC.
|
|
Get numBaseline.
|
|
Get numPoly.
|
|
Get numReceptor.
|
|
Get polarizationTypes.
|
|
Get receiverBand.
|
|
Get refAntennaName.
|
|
Get rms.
|
|
Get startValidTime.
|
|
Return the table to which this row belongs.
|
|
Get timeOrigin.
|
|
Get typeCurve.
|
|
Set antennaNames with the specified String[] value.
|
|
Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.
|
|
Set calDataId with the specified Tag value.
|
|
Set calReductionId with the specified Tag value.
|
|
Set curve with the specified float[][][][] value.
|
|
Set endValidTime with the specified ArrayTime value.
|
|
Set frequencyRange with the specified Frequency[] value.
|
|
Fill the values of this row from the IDL struct CalCurveRowIDL.
|
|
Fill the values of this row from an XML string that was produced by the toXML() method.
|
|
Set numAntenna with the specified int value.
|
|
Set numAPC with the specified int value.
|
|
Set numBaseline with the specified int value.
|
|
Set numPoly with the specified int value.
|
|
Set numReceptor with the specified int value.
|
|
Set polarizationTypes with the specified PolarizationType[] value.
|
|
Set receiverBand with the specified ReceiverBand value.
|
|
Set refAntennaName with the specified String value.
|
|
Set rms with the specified float[][][] value.
|
|
Set startValidTime with the specified ArrayTime value.
|
|
Set timeOrigin with the specified ArrayTime value.
|
|
Set typeCurve with the specified CalCurveType value.
|
|
Return this row in the form of an IDL struct.
|
|
Return this row in the form of an XML string.
|