edu.nps.moves.dismobile
Class FundamentalParameterDataIff

java.lang.Object
  extended by edu.nps.moves.dismobile.FundamentalParameterDataIff
All Implemented Interfaces:
java.io.Serializable

public class FundamentalParameterDataIff
extends java.lang.Object
implements java.io.Serializable

5.2.45. Fundamental IFF atc data Copyright (c) 2008-2010, MOVES Institute, Naval Postgraduate School. All rights reserved. This work is licensed under the BSD open source license, available at https://www.movesinstitute.org/licenses/bsd.html

Author:
DMcG
See Also:
Serialized Form

Field Summary
protected  short applicableModes
          Applicable modes enumeration
protected  long burstLength
          Burst length
protected  float erp
          ERP
protected  float frequency
          frequency
protected  int pad2
          padding
protected  short pad3
          padding
protected  float pgrf
          pgrf
protected  float pulseWidth
          Pulse width
 
Constructor Summary
FundamentalParameterDataIff()
          Constructor
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 boolean equalsImpl(java.lang.Object obj)
          Compare all fields that contribute to the state, ignoring transient and static fields, for this and the supplied object
 short getApplicableModes()
           
 long getBurstLength()
           
 float getErp()
           
 float getFrequency()
           
 int getMarshalledSize()
           
 int getPad2()
           
 short getPad3()
           
 float getPgrf()
           
 float getPulseWidth()
           
 void marshal(java.nio.ByteBuffer buff)
          Packs a Pdu into the ByteBuffer.
 void marshal(java.io.DataOutputStream dos)
           
 void setApplicableModes(short pApplicableModes)
           
 void setBurstLength(long pBurstLength)
           
 void setErp(float pErp)
           
 void setFrequency(float pFrequency)
           
 void setPad2(int pPad2)
           
 void setPad3(short pPad3)
           
 void setPgrf(float pPgrf)
           
 void setPulseWidth(float pPulseWidth)
           
 void unmarshal(java.nio.ByteBuffer buff)
          Unpacks a Pdu from the underlying data.
 void unmarshal(java.io.DataInputStream dis)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

erp

protected float erp
ERP


frequency

protected float frequency
frequency


pgrf

protected float pgrf
pgrf


pulseWidth

protected float pulseWidth
Pulse width


burstLength

protected long burstLength
Burst length


applicableModes

protected short applicableModes
Applicable modes enumeration


pad2

protected int pad2
padding


pad3

protected short pad3
padding

Constructor Detail

FundamentalParameterDataIff

public FundamentalParameterDataIff()
Constructor

Method Detail

getMarshalledSize

public int getMarshalledSize()

setErp

public void setErp(float pErp)

getErp

public float getErp()

setFrequency

public void setFrequency(float pFrequency)

getFrequency

public float getFrequency()

setPgrf

public void setPgrf(float pPgrf)

getPgrf

public float getPgrf()

setPulseWidth

public void setPulseWidth(float pPulseWidth)

getPulseWidth

public float getPulseWidth()

setBurstLength

public void setBurstLength(long pBurstLength)

getBurstLength

public long getBurstLength()

setApplicableModes

public void setApplicableModes(short pApplicableModes)

getApplicableModes

public short getApplicableModes()

setPad2

public void setPad2(int pPad2)

getPad2

public int getPad2()

setPad3

public void setPad3(short pPad3)

getPad3

public short getPad3()

marshal

public void marshal(java.io.DataOutputStream dos)

unmarshal

public void unmarshal(java.io.DataInputStream dis)

marshal

public void marshal(java.nio.ByteBuffer buff)
Packs a Pdu into the ByteBuffer.

Parameters:
buff - The ByteBuffer at the position to begin writing
Throws:
java.nio.BufferOverflowException - if buff is too small
java.nio.ReadOnlyBufferException - if buff is read only
Since:
??
See Also:
ByteBuffer

unmarshal

public void unmarshal(java.nio.ByteBuffer buff)
Unpacks a Pdu from the underlying data.

Parameters:
buff - The ByteBuffer at the position to begin reading
Throws:
java.nio.BufferUnderflowException - if buff is too small
Since:
??
See Also:
ByteBuffer

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

equalsImpl

public boolean equalsImpl(java.lang.Object obj)
Compare all fields that contribute to the state, ignoring transient and static fields, for this and the supplied object

Parameters:
obj - the object to compare to
Returns:
true if the objects are equal, false otherwise.