alma.asdm.GainTrackingRow Class Reference

Inherits alma.asdm.ASDMRow.

List of all members.


Detailed Description

The GainTrackingRow class is a row of a GainTrackingTable.

Generated from model's revision 1.41, branch HEAD


Public Member Functions

GainTrackingTable getTable ()
 Return the table to which this row belongs.
GainTrackingRowIDL toIDL ()
 Return this row in the form of an IDL struct.
void setFromIDL (GainTrackingRowIDL x) throws ConversionException
 Fill the values of this row from the IDL struct GainTrackingRowIDL.
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.
float getAttenuator ()
 Get attenuator.
void setAttenuator (float attenuator)
 Set attenuator with the specified float value.
boolean isSamplingLevelExists ()
 The attribute samplingLevel is optional.
float getSamplingLevel () throws IllegalAccessException
 Get samplingLevel, which is optional.
void setSamplingLevel (float samplingLevel)
 Set samplingLevel with the specified float value.
void clearSamplingLevel ()
 Mark samplingLevel, which is an optional field, as non-existent.
Interval getDelayoff1 ()
 Get delayoff1.
void setDelayoff1 (Interval delayoff1)
 Set delayoff1 with the specified Interval value.
Interval getDelayoff2 ()
 Get delayoff2.
void setDelayoff2 (Interval delayoff2)
 Set delayoff2 with the specified Interval value.
Angle getPhaseoff1 ()
 Get phaseoff1.
void setPhaseoff1 (Angle phaseoff1)
 Set phaseoff1 with the specified Angle value.
Angle getPhaseoff2 ()
 Get phaseoff2.
void setPhaseoff2 (Angle phaseoff2)
 Set phaseoff2 with the specified Angle value.
AngularRate getRateoff1 ()
 Get rateoff1.
void setRateoff1 (AngularRate rateoff1)
 Set rateoff1 with the specified AngularRate value.
AngularRate getRateoff2 ()
 Get rateoff2.
void setRateoff2 (AngularRate rateoff2)
 Set rateoff2 with the specified AngularRate value.
boolean isPhaseRefOffsetExists ()
 The attribute phaseRefOffset is optional.
Angle getPhaseRefOffset () throws IllegalAccessException
 Get phaseRefOffset, which is optional.
void setPhaseRefOffset (Angle phaseRefOffset)
 Set phaseRefOffset with the specified Angle value.
void clearPhaseRefOffset ()
 Mark phaseRefOffset, which is an optional field, as non-existent.
Tag getAntennaId ()
 Get antennaId.
void setAntennaId (Tag antennaId) throws IllegalAccessException
 Set antennaId with the specified Tag value.
int getFeedId ()
 Get feedId.
void setFeedId (int feedId) throws IllegalAccessException
 Set feedId with the specified int value.
Tag getSpectralWindowId ()
 Get spectralWindowId.
void setSpectralWindowId (Tag spectralWindowId) throws IllegalAccessException
 Set spectralWindowId with the specified Tag value.
SpectralWindowRow getSpectralWindowUsingSpectralWindowId ()
 Returns the pointer to the row in the SpectralWindow table having SpectralWindow.spectralWindowId == spectralWindowId.
AntennaRow getAntennaUsingAntennaId ()
 Returns the pointer to the row in the Antenna table having Antenna.antennaId == antennaId.
FeedRow[] getFeeds () throws InvalidAccessException, NoSuchRow
 Get the collection of rows in the Feed table having feedId == this.feedId.
boolean compareNoAutoInc (Tag antennaId, int feedId, Tag spectralWindowId, ArrayTimeInterval timeInterval, float attenuator, Interval delayoff1, Interval delayoff2, Angle phaseoff1, Angle phaseoff2, AngularRate rateoff1, AngularRate rateoff2)
 Compare each attribute except the autoincrementable one of this GainTrackingRow with the corresponding parameters and return true if there is a match and false otherwise.
boolean equalByRequiredValue (GainTrackingRow x)
 Return true if all required attributes of the value part are equal to their homologues in x and false otherwise.
boolean compareRequiredValue (float attenuator, Interval delayoff1, Interval delayoff2, Angle phaseoff1, Angle phaseoff2, AngularRate rateoff1, AngularRate rateoff2)

Package Functions

 GainTrackingRow (GainTrackingTable table)
 Create a GainTrackingRow.
 GainTrackingRow (GainTrackingTable table, GainTrackingRow row)
 Creates a GainTrackingRow 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


Constructor & Destructor Documentation

alma.asdm.GainTrackingRow.GainTrackingRow ( GainTrackingTable  table  )  [package]

Create a GainTrackingRow.

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

Creates a GainTrackingRow using a copy constructor mechanism.

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

GainTrackingRowIDL alma.asdm.GainTrackingRow.toIDL (  ) 

Return this row in the form of an IDL struct.

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

void alma.asdm.GainTrackingRow.setFromIDL ( GainTrackingRowIDL  x  )  throws ConversionException

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

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

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

ArrayTimeInterval alma.asdm.GainTrackingRow.getTimeInterval (  ) 

Get timeInterval.

Returns:
timeInterval as ArrayTimeInterval

void alma.asdm.GainTrackingRow.setTimeInterval ( ArrayTimeInterval  timeInterval  )  throws IllegalAccessException

Set timeInterval with the specified ArrayTimeInterval value.

Parameters:
timeInterval The ArrayTimeInterval value to which timeInterval is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

float alma.asdm.GainTrackingRow.getAttenuator (  ) 

Get attenuator.

Returns:
attenuator as float

void alma.asdm.GainTrackingRow.setAttenuator ( float  attenuator  ) 

Set attenuator with the specified float value.

Parameters:
attenuator The float value to which attenuator is to be set.

boolean alma.asdm.GainTrackingRow.isSamplingLevelExists (  ) 

The attribute samplingLevel is optional.

Return true if this attribute exists.

Returns:
true if and only if the samplingLevel attribute exists.

float alma.asdm.GainTrackingRow.getSamplingLevel (  )  throws IllegalAccessException

Get samplingLevel, which is optional.

Returns:
samplingLevel as float
Exceptions:
IllegalAccessException If samplingLevel does not exist.

void alma.asdm.GainTrackingRow.setSamplingLevel ( float  samplingLevel  ) 

Set samplingLevel with the specified float value.

Parameters:
samplingLevel The float value to which samplingLevel is to be set.

Interval alma.asdm.GainTrackingRow.getDelayoff1 (  ) 

Get delayoff1.

Returns:
delayoff1 as Interval

void alma.asdm.GainTrackingRow.setDelayoff1 ( Interval  delayoff1  ) 

Set delayoff1 with the specified Interval value.

Parameters:
delayoff1 The Interval value to which delayoff1 is to be set.

Interval alma.asdm.GainTrackingRow.getDelayoff2 (  ) 

Get delayoff2.

Returns:
delayoff2 as Interval

void alma.asdm.GainTrackingRow.setDelayoff2 ( Interval  delayoff2  ) 

Set delayoff2 with the specified Interval value.

Parameters:
delayoff2 The Interval value to which delayoff2 is to be set.

Angle alma.asdm.GainTrackingRow.getPhaseoff1 (  ) 

Get phaseoff1.

Returns:
phaseoff1 as Angle

void alma.asdm.GainTrackingRow.setPhaseoff1 ( Angle  phaseoff1  ) 

Set phaseoff1 with the specified Angle value.

Parameters:
phaseoff1 The Angle value to which phaseoff1 is to be set.

Angle alma.asdm.GainTrackingRow.getPhaseoff2 (  ) 

Get phaseoff2.

Returns:
phaseoff2 as Angle

void alma.asdm.GainTrackingRow.setPhaseoff2 ( Angle  phaseoff2  ) 

Set phaseoff2 with the specified Angle value.

Parameters:
phaseoff2 The Angle value to which phaseoff2 is to be set.

AngularRate alma.asdm.GainTrackingRow.getRateoff1 (  ) 

Get rateoff1.

Returns:
rateoff1 as AngularRate

void alma.asdm.GainTrackingRow.setRateoff1 ( AngularRate  rateoff1  ) 

Set rateoff1 with the specified AngularRate value.

Parameters:
rateoff1 The AngularRate value to which rateoff1 is to be set.

AngularRate alma.asdm.GainTrackingRow.getRateoff2 (  ) 

Get rateoff2.

Returns:
rateoff2 as AngularRate

void alma.asdm.GainTrackingRow.setRateoff2 ( AngularRate  rateoff2  ) 

Set rateoff2 with the specified AngularRate value.

Parameters:
rateoff2 The AngularRate value to which rateoff2 is to be set.

boolean alma.asdm.GainTrackingRow.isPhaseRefOffsetExists (  ) 

The attribute phaseRefOffset is optional.

Return true if this attribute exists.

Returns:
true if and only if the phaseRefOffset attribute exists.

Angle alma.asdm.GainTrackingRow.getPhaseRefOffset (  )  throws IllegalAccessException

Get phaseRefOffset, which is optional.

Returns:
phaseRefOffset as Angle
Exceptions:
IllegalAccessException If phaseRefOffset does not exist.

void alma.asdm.GainTrackingRow.setPhaseRefOffset ( Angle  phaseRefOffset  ) 

Set phaseRefOffset with the specified Angle value.

Parameters:
phaseRefOffset The Angle value to which phaseRefOffset is to be set.

Tag alma.asdm.GainTrackingRow.getAntennaId (  ) 

Get antennaId.

Returns:
antennaId as Tag

void alma.asdm.GainTrackingRow.setAntennaId ( Tag  antennaId  )  throws IllegalAccessException

Set antennaId with the specified Tag value.

Parameters:
antennaId The Tag value to which antennaId is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

int alma.asdm.GainTrackingRow.getFeedId (  ) 

Get feedId.

Returns:
feedId as int

void alma.asdm.GainTrackingRow.setFeedId ( int  feedId  )  throws IllegalAccessException

Set feedId with the specified int value.

Parameters:
feedId The int value to which feedId 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.GainTrackingRow.getSpectralWindowId (  ) 

Get spectralWindowId.

Returns:
spectralWindowId as Tag

void alma.asdm.GainTrackingRow.setSpectralWindowId ( Tag  spectralWindowId  )  throws IllegalAccessException

Set spectralWindowId with the specified Tag value.

Parameters:
spectralWindowId The Tag value to which spectralWindowId is to be set.
Exceptions:
IllegalAccessException If an attempt is made to change this field after is has been added to the table.

SpectralWindowRow alma.asdm.GainTrackingRow.getSpectralWindowUsingSpectralWindowId (  ) 

Returns the pointer to the row in the SpectralWindow table having SpectralWindow.spectralWindowId == spectralWindowId.

Returns:
a SpectralWindowRow

AntennaRow alma.asdm.GainTrackingRow.getAntennaUsingAntennaId (  ) 

Returns the pointer to the row in the Antenna table having Antenna.antennaId == antennaId.

Returns:
a AntennaRow

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

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

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

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