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.46, 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) throws IllegalAccessException
 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) throws IllegalAccessException
 Set delayoff1 with the specified Interval value.
Interval getDelayoff2 ()
 Get delayoff2.
void setDelayoff2 (Interval delayoff2) throws IllegalAccessException
 Set delayoff2 with the specified Interval value.
Angle getPhaseoff1 ()
 Get phaseoff1.
void setPhaseoff1 (Angle phaseoff1) throws IllegalAccessException
 Set phaseoff1 with the specified Angle value.
Angle getPhaseoff2 ()
 Get phaseoff2.
void setPhaseoff2 (Angle phaseoff2) throws IllegalAccessException
 Set phaseoff2 with the specified Angle value.
AngularRate getRateoff1 ()
 Get rateoff1.
void setRateoff1 (AngularRate rateoff1) throws IllegalAccessException
 Set rateoff1 with the specified AngularRate value.
AngularRate getRateoff2 ()
 Get rateoff2.
void setRateoff2 (AngularRate rateoff2) throws IllegalAccessException
 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

void alma.asdm.GainTrackingRow.clearPhaseRefOffset  ) 
 

Mark phaseRefOffset, which is an optional field, as non-existent.

void alma.asdm.GainTrackingRow.clearSamplingLevel  ) 
 

Mark samplingLevel, which is an optional field, as non-existent.

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

Tag alma.asdm.GainTrackingRow.getAntennaId  ) 
 

Get antennaId.

Returns:
antennaId as Tag

AntennaRow alma.asdm.GainTrackingRow.getAntennaUsingAntennaId  ) 
 

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

Returns:
a AntennaRow

float alma.asdm.GainTrackingRow.getAttenuator  ) 
 

Get attenuator.

Returns:
attenuator as float

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.

Interval alma.asdm.GainTrackingRow.getDelayoff1  ) 
 

Get delayoff1.

Returns:
delayoff1 as Interval

Interval alma.asdm.GainTrackingRow.getDelayoff2  ) 
 

Get delayoff2.

Returns:
delayoff2 as Interval

int alma.asdm.GainTrackingRow.getFeedId  ) 
 

Get feedId.

Returns:
feedId as int

Angle alma.asdm.GainTrackingRow.getPhaseoff1  ) 
 

Get phaseoff1.

Returns:
phaseoff1 as Angle

Angle alma.asdm.GainTrackingRow.getPhaseoff2  ) 
 

Get phaseoff2.

Returns:
phaseoff2 as Angle

Angle alma.asdm.GainTrackingRow.getPhaseRefOffset  )  throws IllegalAccessException
 

Get phaseRefOffset, which is optional.

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

AngularRate alma.asdm.GainTrackingRow.getRateoff1  ) 
 

Get rateoff1.

Returns:
rateoff1 as AngularRate

AngularRate alma.asdm.GainTrackingRow.getRateoff2  ) 
 

Get rateoff2.

Returns:
rateoff2 as AngularRate

float alma.asdm.GainTrackingRow.getSamplingLevel  )  throws IllegalAccessException
 

Get samplingLevel, which is optional.

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

Tag alma.asdm.GainTrackingRow.getSpectralWindowId  ) 
 

Get spectralWindowId.

Returns:
spectralWindowId as Tag

SpectralWindowRow alma.asdm.GainTrackingRow.getSpectralWindowUsingSpectralWindowId  ) 
 

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

Returns:
a SpectralWindowRow

GainTrackingTable alma.asdm.GainTrackingRow.getTable  ) 
 

Return the table to which this row belongs.

ArrayTimeInterval alma.asdm.GainTrackingRow.getTimeInterval  ) 
 

Get timeInterval.

Returns:
timeInterval as ArrayTimeInterval

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.

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.

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.

void alma.asdm.GainTrackingRow.setAttenuator float  attenuator  )  throws IllegalAccessException
 

Set attenuator with the specified float value.

Parameters:
attenuator The float value to which attenuator 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.GainTrackingRow.setDelayoff1 Interval  delayoff1  )  throws IllegalAccessException
 

Set delayoff1 with the specified Interval value.

Parameters:
delayoff1 The Interval value to which delayoff1 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.GainTrackingRow.setDelayoff2 Interval  delayoff2  )  throws IllegalAccessException
 

Set delayoff2 with the specified Interval value.

Parameters:
delayoff2 The Interval value to which delayoff2 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.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.

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.

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. 

void alma.asdm.GainTrackingRow.setPhaseoff1 Angle  phaseoff1  )  throws IllegalAccessException
 

Set phaseoff1 with the specified Angle value.

Parameters:
phaseoff1 The Angle value to which phaseoff1 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.GainTrackingRow.setPhaseoff2 Angle  phaseoff2  )  throws IllegalAccessException
 

Set phaseoff2 with the specified Angle value.

Parameters:
phaseoff2 The Angle value to which phaseoff2 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.GainTrackingRow.setPhaseRefOffset Angle  phaseRefOffset  ) 
 

Set phaseRefOffset with the specified Angle value.

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

void alma.asdm.GainTrackingRow.setRateoff1 AngularRate  rateoff1  )  throws IllegalAccessException
 

Set rateoff1 with the specified AngularRate value.

Parameters:
rateoff1 The AngularRate value to which rateoff1 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.GainTrackingRow.setRateoff2 AngularRate  rateoff2  )  throws IllegalAccessException
 

Set rateoff2 with the specified AngularRate value.

Parameters:
rateoff2 The AngularRate value to which rateoff2 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.GainTrackingRow.setSamplingLevel float  samplingLevel  ) 
 

Set samplingLevel with the specified float value.

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

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.

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.

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.

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. 


The documentation for this class was generated from the following file:
Generated on Tue Nov 18 17:46:47 2008 for ASDM Java Implementation by doxygen 1.3.8