Generated from model's revision 1.41, branch HEAD
Public Member Functions | |
SourceParameterTable | getTable () |
Return the table to which this row belongs. | |
SourceParameterRowIDL | toIDL () |
Return this row in the form of an IDL struct. | |
void | setFromIDL (SourceParameterRowIDL x) throws ConversionException |
Fill the values of this row from the IDL struct SourceParameterRowIDL. | |
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. | |
ArrayTimeInterval | getTimeInterval () |
Get timeInterval. | |
void | setTimeInterval (ArrayTimeInterval timeInterval) throws IllegalAccessException |
Set timeInterval with the specified ArrayTimeInterval value. | |
int | getNumFreq () |
Get numFreq. | |
void | setNumFreq (int numFreq) |
Set numFreq with the specified int value. | |
int | getNumStokes () |
Get numStokes. | |
void | setNumStokes (int numStokes) |
Set numStokes with the specified int value. | |
int | getNumDep () |
Get numDep. | |
void | setNumDep (int numDep) |
Set numDep with the specified int value. | |
StokesParameter[] | getStokesParameter () |
Get stokesParameter. | |
void | setStokesParameter (StokesParameter[] stokesParameter) |
Set stokesParameter with the specified StokesParameter[] value. | |
Flux[][] | getFlux () |
Get flux. | |
void | setFlux (Flux[][] flux) |
Set flux with the specified Flux[][] value. | |
boolean | isSizeExists () |
The attribute size is optional. | |
Angle[][] | getSize () throws IllegalAccessException |
Get size, which is optional. | |
void | setSize (Angle[][] size) |
Set size with the specified Angle[][] value. | |
void | clearSize () |
Mark size, which is an optional field, as non-existent. | |
boolean | isPositionAngleExists () |
The attribute positionAngle is optional. | |
Angle[] | getPositionAngle () throws IllegalAccessException |
Get positionAngle, which is optional. | |
void | setPositionAngle (Angle[] positionAngle) |
Set positionAngle with the specified Angle[] value. | |
void | clearPositionAngle () |
Mark positionAngle, which is an optional field, as non-existent. | |
int | getSourceParameterId () |
Get sourceParameterId. | |
Frequency[] | getFrequency () |
Get frequency. | |
void | setFrequency (Frequency[] frequency) |
Set frequency with the specified Frequency[] value. | |
Frequency[] | getFrequencyInterval () |
Get frequencyInterval. | |
void | setFrequencyInterval (Frequency[] frequencyInterval) |
Set frequencyInterval with the specified Frequency[] value. | |
Flux[][] | getFluxErr () |
Get fluxErr. | |
void | setFluxErr (Flux[][] fluxErr) |
Set fluxErr with the specified Flux[][] value. | |
boolean | isSizeErrExists () |
The attribute sizeErr is optional. | |
Angle[][] | getSizeErr () throws IllegalAccessException |
Get sizeErr, which is optional. | |
void | setSizeErr (Angle[][] sizeErr) |
Set sizeErr with the specified Angle[][] value. | |
void | clearSizeErr () |
Mark sizeErr, which is an optional field, as non-existent. | |
boolean | isPositionAngleErrExists () |
The attribute positionAngleErr is optional. | |
Angle[] | getPositionAngleErr () throws IllegalAccessException |
Get positionAngleErr, which is optional. | |
void | setPositionAngleErr (Angle[] positionAngleErr) |
Set positionAngleErr with the specified Angle[] value. | |
void | clearPositionAngleErr () |
Mark positionAngleErr, which is an optional field, as non-existent. | |
boolean | isDepSourceParameterIdExists () |
The attribute depSourceParameterId is optional. | |
int[] | getDepSourceParameterId () throws IllegalAccessException |
Get depSourceParameterId, which is optional. | |
void | setDepSourceParameterId (int[] depSourceParameterId) |
Set depSourceParameterId with the specified int[] value. | |
void | clearDepSourceParameterId () |
Mark depSourceParameterId, which is an optional field, as non-existent. | |
int | getSourceId () |
Get sourceId. | |
void | setSourceId (int sourceId) throws IllegalAccessException |
Set sourceId with the specified int value. | |
SourceRow[] | getSources () throws InvalidAccessException, NoSuchRow |
Get the collection of rows in the Source table having sourceId == this.sourceId. | |
boolean | compareNoAutoInc (int sourceId, ArrayTimeInterval timeInterval, int numFreq, int numStokes, int numDep, StokesParameter[] stokesParameter, Flux[][] flux, Frequency[] frequency, Frequency[] frequencyInterval, Flux[][] fluxErr) |
Compare each attribute except the autoincrementable one of this SourceParameterRow with the corresponding parameters and return true if there is a match and false otherwise. | |
boolean | equalByRequiredValue (SourceParameterRow x) |
Return true if all required attributes of the value part are equal to their homologues in x and false otherwise. | |
boolean | compareRequiredValue (int numFreq, int numStokes, int numDep, StokesParameter[] stokesParameter, Flux[][] flux, Frequency[] frequency, Frequency[] frequencyInterval, Flux[][] fluxErr) |
Protected Member Functions | |
void | setSourceParameterId (int sourceParameterId) throws IllegalAccessException |
Set sourceParameterId with the specified int value. | |
Package Functions | |
SourceParameterRow (SourceParameterTable table) | |
Create a SourceParameterRow. | |
SourceParameterRow (SourceParameterTable table, SourceParameterRow row) | |
Creates a SourceParameterRow 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. | |
Package Attributes | |
ArrayTimeInterval | timeInterval |
alma.asdm.SourceParameterRow.SourceParameterRow | ( | SourceParameterTable | table | ) | [package] |
Create a SourceParameterRow.
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.SourceParameterRow.SourceParameterRow | ( | SourceParameterTable | table, | |
SourceParameterRow | row | |||
) | [package] |
Creates a SourceParameterRow using a copy constructor mechanism.
Given a SourceParameterRow row and a SourceParameterTable table, the method creates a new SourceParameterRow 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. |
SourceParameterRowIDL alma.asdm.SourceParameterRow.toIDL | ( | ) |
Return this row in the form of an IDL struct.
void alma.asdm.SourceParameterRow.setFromIDL | ( | SourceParameterRowIDL | x | ) | throws ConversionException |
Fill the values of this row from the IDL struct SourceParameterRowIDL.
x | The IDL struct containing the values used to fill this row. |
String alma.asdm.SourceParameterRow.toXML | ( | ) | throws ConversionException |
Return this row in the form of an XML string.
ConversionException. |
void alma.asdm.SourceParameterRow.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. |
ArrayTimeInterval alma.asdm.SourceParameterRow.getTimeInterval | ( | ) |
Get timeInterval.
void alma.asdm.SourceParameterRow.setTimeInterval | ( | ArrayTimeInterval | timeInterval | ) | throws IllegalAccessException |
Set timeInterval with the specified ArrayTimeInterval value.
timeInterval | The ArrayTimeInterval value to which timeInterval is to be set. |
IllegalAccessException | If an attempt is made to change this field after is has been added to the table. |
int alma.asdm.SourceParameterRow.getNumFreq | ( | ) |
Get numFreq.
void alma.asdm.SourceParameterRow.setNumFreq | ( | int | numFreq | ) |
Set numFreq with the specified int value.
numFreq | The int value to which numFreq is to be set. |
int alma.asdm.SourceParameterRow.getNumStokes | ( | ) |
Get numStokes.
void alma.asdm.SourceParameterRow.setNumStokes | ( | int | numStokes | ) |
Set numStokes with the specified int value.
numStokes | The int value to which numStokes is to be set. |
int alma.asdm.SourceParameterRow.getNumDep | ( | ) |
Get numDep.
void alma.asdm.SourceParameterRow.setNumDep | ( | int | numDep | ) |
Set numDep with the specified int value.
numDep | The int value to which numDep is to be set. |
StokesParameter [] alma.asdm.SourceParameterRow.getStokesParameter | ( | ) |
Get stokesParameter.
void alma.asdm.SourceParameterRow.setStokesParameter | ( | StokesParameter[] | stokesParameter | ) |
Set stokesParameter with the specified StokesParameter[] value.
stokesParameter | The StokesParameter[] value to which stokesParameter is to be set. |
Flux [][] alma.asdm.SourceParameterRow.getFlux | ( | ) |
Get flux.
void alma.asdm.SourceParameterRow.setFlux | ( | Flux | flux[][] | ) |
Set flux with the specified Flux[][] value.
flux | The Flux[][] value to which flux is to be set. |
boolean alma.asdm.SourceParameterRow.isSizeExists | ( | ) |
The attribute size is optional.
Return true if this attribute exists.
Angle [][] alma.asdm.SourceParameterRow.getSize | ( | ) | throws IllegalAccessException |
Get size, which is optional.
IllegalAccessException | If size does not exist. |
void alma.asdm.SourceParameterRow.setSize | ( | Angle | size[][] | ) |
Set size with the specified Angle[][] value.
size | The Angle[][] value to which size is to be set. |
boolean alma.asdm.SourceParameterRow.isPositionAngleExists | ( | ) |
The attribute positionAngle is optional.
Return true if this attribute exists.
Angle [] alma.asdm.SourceParameterRow.getPositionAngle | ( | ) | throws IllegalAccessException |
Get positionAngle, which is optional.
IllegalAccessException | If positionAngle does not exist. |
void alma.asdm.SourceParameterRow.setPositionAngle | ( | Angle[] | positionAngle | ) |
Set positionAngle with the specified Angle[] value.
positionAngle | The Angle[] value to which positionAngle is to be set. |
int alma.asdm.SourceParameterRow.getSourceParameterId | ( | ) |
Get sourceParameterId.
void alma.asdm.SourceParameterRow.setSourceParameterId | ( | int | sourceParameterId | ) | throws IllegalAccessException [protected] |
Set sourceParameterId with the specified int value.
sourceParameterId | The int value to which sourceParameterId is to be set. |
IllegalAccessException | If an attempt is made to change this field after is has been added to the table. |
Frequency [] alma.asdm.SourceParameterRow.getFrequency | ( | ) |
Get frequency.
void alma.asdm.SourceParameterRow.setFrequency | ( | Frequency[] | frequency | ) |
Set frequency with the specified Frequency[] value.
frequency | The Frequency[] value to which frequency is to be set. |
Frequency [] alma.asdm.SourceParameterRow.getFrequencyInterval | ( | ) |
Get frequencyInterval.
void alma.asdm.SourceParameterRow.setFrequencyInterval | ( | Frequency[] | frequencyInterval | ) |
Set frequencyInterval with the specified Frequency[] value.
frequencyInterval | The Frequency[] value to which frequencyInterval is to be set. |
Flux [][] alma.asdm.SourceParameterRow.getFluxErr | ( | ) |
Get fluxErr.
void alma.asdm.SourceParameterRow.setFluxErr | ( | Flux | fluxErr[][] | ) |
Set fluxErr with the specified Flux[][] value.
fluxErr | The Flux[][] value to which fluxErr is to be set. |
boolean alma.asdm.SourceParameterRow.isSizeErrExists | ( | ) |
The attribute sizeErr is optional.
Return true if this attribute exists.
Angle [][] alma.asdm.SourceParameterRow.getSizeErr | ( | ) | throws IllegalAccessException |
Get sizeErr, which is optional.
IllegalAccessException | If sizeErr does not exist. |
void alma.asdm.SourceParameterRow.setSizeErr | ( | Angle | sizeErr[][] | ) |
Set sizeErr with the specified Angle[][] value.
sizeErr | The Angle[][] value to which sizeErr is to be set. |
boolean alma.asdm.SourceParameterRow.isPositionAngleErrExists | ( | ) |
The attribute positionAngleErr is optional.
Return true if this attribute exists.
Angle [] alma.asdm.SourceParameterRow.getPositionAngleErr | ( | ) | throws IllegalAccessException |
Get positionAngleErr, which is optional.
IllegalAccessException | If positionAngleErr does not exist. |
void alma.asdm.SourceParameterRow.setPositionAngleErr | ( | Angle[] | positionAngleErr | ) |
Set positionAngleErr with the specified Angle[] value.
positionAngleErr | The Angle[] value to which positionAngleErr is to be set. |
boolean alma.asdm.SourceParameterRow.isDepSourceParameterIdExists | ( | ) |
The attribute depSourceParameterId is optional.
Return true if this attribute exists.
int [] alma.asdm.SourceParameterRow.getDepSourceParameterId | ( | ) | throws IllegalAccessException |
Get depSourceParameterId, which is optional.
IllegalAccessException | If depSourceParameterId does not exist. |
void alma.asdm.SourceParameterRow.setDepSourceParameterId | ( | int[] | depSourceParameterId | ) |
Set depSourceParameterId with the specified int[] value.
depSourceParameterId | The int[] value to which depSourceParameterId is to be set. |
int alma.asdm.SourceParameterRow.getSourceId | ( | ) |
Get sourceId.
void alma.asdm.SourceParameterRow.setSourceId | ( | int | sourceId | ) | throws IllegalAccessException |
Set sourceId with the specified int value.
sourceId | The int value to which sourceId is to be set. |
IllegalAccessException | If an attempt is made to change this field after is has been added to the table. |
boolean alma.asdm.SourceParameterRow.equalByRequiredValue | ( | SourceParameterRow | x | ) |
Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
x | the SourceParameterRow whose required attributes of the value part will be compared with those of this. |
Object [] alma.asdm.SourceParameterRow.getAttributesValues | ( | ) | [package, virtual] |
Returns all the attributes of an attribute of an ASDM table as an array of Object.
Implements alma.asdm.ASDMRow.