java.lang.Object
jflight.db.PersistentObject
jflight.flightbook.Glider
- public class Glider
- extends jflight.db.PersistentObject
Glider class
Glider class OLC-class (?)
0
1 1
2 1
3 2
4 2
5
6
- Since:
- JDK1.1.x
UD
public static final int UD
- See Also:
- Constant Field Values
HG
public static final int HG
- See Also:
- Constant Field Values
HG_TL
public static final int HG_TL
- See Also:
- Constant Field Values
RW
public static final int RW
- See Also:
- Constant Field Values
RW_FAIRED
public static final int RW_FAIRED
- See Also:
- Constant Field Values
PG_OPEN
public static final int PG_OPEN
- See Also:
- Constant Field Values
PG_SPORT
public static final int PG_SPORT
- See Also:
- Constant Field Values
PG_TANDEM
public static final int PG_TANDEM
- See Also:
- Constant Field Values
PG
public static final int PG
- See Also:
- Constant Field Values
gliderName
private java.lang.String gliderName
gliderType
private int gliderType
vh1
public double vh1
vv1
public double vv1
vh2
public double vh2
vv2
public double vv2
Glider
public Glider(java.lang.String name,
int gliderType,
double vh1,
double vv1,
double vh2,
double vv2)
- Constructor Glider
Glider
public Glider(java.lang.String name,
int gliderType)
Glider
public Glider(java.lang.String name)
setVh1
public void setVh1(double vh1)
getVh1
public double getVh1()
setVv1
public void setVv1(double vv1)
getVv1
public double getVv1()
setVh2
public void setVh2(double vh2)
getVh2
public double getVh2()
setVv2
public void setVv2(double vv2)
getVv2
public double getVv2()
getGliderName
public java.lang.String getGliderName()
- Method getGliderName
setGliderName
public void setGliderName(java.lang.String aName)
getGliderType
public int getGliderType()
- Method getGliderType
setGliderType
public void setGliderType(int aType)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).