support.Flight
Class GUIVertex

java.lang.Object
  |
  +--support.Flight.GUIVertex

class GUIVertex
extends java.lang.Object

Just a data bucket, allowing us to maintain state about location and color of vertices, for later redrawing if required. Yes, it has public instance variables. Sue me.


Field Summary
(package private)  java.awt.Color color
           
(package private)  java.lang.String id
           
(package private)  int x
           
(package private)  int y
           
 
Constructor Summary
(package private) GUIVertex(int x, int y, java.awt.Color c, java.lang.String id)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

x

int x

y

int y

color

java.awt.Color color

id

java.lang.String id
Constructor Detail

GUIVertex

GUIVertex(int x,
          int y,
          java.awt.Color c,
          java.lang.String id)