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. |
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.
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.
table | The table to which this row belongs. | |
row | The row which is to be copied. |
CalCurveRowIDL alma.asdm.CalCurveRow.toIDL | ( | ) |
Return this row in the form of an IDL struct.
void alma.asdm.CalCurveRow.setFromIDL | ( | CalCurveRowIDL | x | ) | throws ConversionException |
Fill the values of this row from the IDL struct CalCurveRowIDL.
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.
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.
x | The XML string being used to set the values of this row. |
ConversionException. |
int alma.asdm.CalCurveRow.getNumAntenna | ( | ) |
Get numAntenna.
void alma.asdm.CalCurveRow.setNumAntenna | ( | int | numAntenna | ) |
Set numAntenna with the specified int value.
numAntenna | The int value to which numAntenna is to be set. |
int alma.asdm.CalCurveRow.getNumBaseline | ( | ) |
Get numBaseline.
void alma.asdm.CalCurveRow.setNumBaseline | ( | int | numBaseline | ) |
Set numBaseline with the specified int value.
numBaseline | The int value to which numBaseline is to be set. |
int alma.asdm.CalCurveRow.getNumAPC | ( | ) |
Get numAPC.
void alma.asdm.CalCurveRow.setNumAPC | ( | int | numAPC | ) |
Set numAPC with the specified int value.
numAPC | The int value to which numAPC is to be set. |
int alma.asdm.CalCurveRow.getNumReceptor | ( | ) |
Get numReceptor.
void alma.asdm.CalCurveRow.setNumReceptor | ( | int | numReceptor | ) |
Set numReceptor with the specified int value.
numReceptor | The int value to which numReceptor is to be set. |
int alma.asdm.CalCurveRow.getNumPoly | ( | ) |
Get numPoly.
void alma.asdm.CalCurveRow.setNumPoly | ( | int | numPoly | ) |
Set numPoly with the specified int value.
numPoly | The int value to which numPoly is to be set. |
String [] alma.asdm.CalCurveRow.getAntennaNames | ( | ) |
Get antennaNames.
void alma.asdm.CalCurveRow.setAntennaNames | ( | String[] | antennaNames | ) |
Set antennaNames with the specified String[] value.
antennaNames | The String[] value to which antennaNames is to be set. |
String alma.asdm.CalCurveRow.getRefAntennaName | ( | ) |
Get refAntennaName.
void alma.asdm.CalCurveRow.setRefAntennaName | ( | String | refAntennaName | ) |
Set refAntennaName with the specified String value.
refAntennaName | The String value to which refAntennaName is to be set. |
ReceiverBand alma.asdm.CalCurveRow.getReceiverBand | ( | ) |
Get receiverBand.
void alma.asdm.CalCurveRow.setReceiverBand | ( | ReceiverBand | receiverBand | ) |
Set receiverBand with the specified ReceiverBand value.
receiverBand | The ReceiverBand value to which receiverBand is to be set. |
AtmPhaseCorrection [] alma.asdm.CalCurveRow.getAtmPhaseCorrections | ( | ) |
Get atmPhaseCorrections.
void alma.asdm.CalCurveRow.setAtmPhaseCorrections | ( | AtmPhaseCorrection[] | atmPhaseCorrections | ) |
Set atmPhaseCorrections with the specified AtmPhaseCorrection[] value.
atmPhaseCorrections | The AtmPhaseCorrection[] value to which atmPhaseCorrections is to be set. |
PolarizationType [] alma.asdm.CalCurveRow.getPolarizationTypes | ( | ) |
Get polarizationTypes.
void alma.asdm.CalCurveRow.setPolarizationTypes | ( | PolarizationType[] | polarizationTypes | ) |
Set polarizationTypes with the specified PolarizationType[] value.
polarizationTypes | The PolarizationType[] value to which polarizationTypes is to be set. |
ArrayTime alma.asdm.CalCurveRow.getStartValidTime | ( | ) |
Get startValidTime.
void alma.asdm.CalCurveRow.setStartValidTime | ( | ArrayTime | startValidTime | ) |
Set startValidTime with the specified ArrayTime value.
startValidTime | The ArrayTime value to which startValidTime is to be set. |
ArrayTime alma.asdm.CalCurveRow.getEndValidTime | ( | ) |
Get endValidTime.
void alma.asdm.CalCurveRow.setEndValidTime | ( | ArrayTime | endValidTime | ) |
Set endValidTime with the specified ArrayTime value.
endValidTime | The ArrayTime value to which endValidTime is to be set. |
Frequency [] alma.asdm.CalCurveRow.getFrequencyRange | ( | ) |
Get frequencyRange.
void alma.asdm.CalCurveRow.setFrequencyRange | ( | Frequency[] | frequencyRange | ) |
Set frequencyRange with the specified Frequency[] value.
frequencyRange | The Frequency[] value to which frequencyRange is to be set. |
CalCurveType alma.asdm.CalCurveRow.getTypeCurve | ( | ) |
Get typeCurve.
void alma.asdm.CalCurveRow.setTypeCurve | ( | CalCurveType | typeCurve | ) |
Set typeCurve with the specified CalCurveType value.
typeCurve | The CalCurveType value to which typeCurve is to be set. |
ArrayTime alma.asdm.CalCurveRow.getTimeOrigin | ( | ) |
Get timeOrigin.
void alma.asdm.CalCurveRow.setTimeOrigin | ( | ArrayTime | timeOrigin | ) |
Set timeOrigin with the specified ArrayTime value.
timeOrigin | The ArrayTime value to which timeOrigin is to be set. |
float [][][][] alma.asdm.CalCurveRow.getCurve | ( | ) |
Get curve.
void alma.asdm.CalCurveRow.setCurve | ( | float | curve[][][][] | ) |
Set curve with the specified float[][][][] value.
curve | The float[][][][] value to which curve is to be set. |
float [][][] alma.asdm.CalCurveRow.getRms | ( | ) |
Get rms.
void alma.asdm.CalCurveRow.setRms | ( | float | rms[][][] | ) |
Set rms with the specified float[][][] value.
rms | The float[][][] value to which rms is to be set. |
Tag alma.asdm.CalCurveRow.getCalDataId | ( | ) |
Get calDataId.
void alma.asdm.CalCurveRow.setCalDataId | ( | Tag | calDataId | ) | throws IllegalAccessException |
Set calDataId with the specified Tag value.
calDataId | The Tag value to which calDataId is to be set. |
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.
void alma.asdm.CalCurveRow.setCalReductionId | ( | Tag | calReductionId | ) | throws IllegalAccessException |
Set calReductionId with the specified Tag value.
calReductionId | The Tag value to which calReductionId is to be set. |
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.
CalReductionRow alma.asdm.CalCurveRow.getCalReductionUsingCalReductionId | ( | ) |
Returns the pointer to the row in the CalReduction table having CalReduction.calReductionId == calReductionId.
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.
x | the CalCurveRow whose required attributes of the value part will be compared with those of this. |
Object [] alma.asdm.CalCurveRow.getAttributesValues | ( | ) | [package, virtual] |
Returns all the attributes of an attribute of an ASDM table as an array of Object.
Implements alma.asdm.ASDMRow.