Uses of Class
net.sf.freecol.common.model.HistoryEvent.Type

Packages that use HistoryEvent.Type
net.sf.freecol.common.model Contains the game model. 
 

Uses of HistoryEvent.Type in net.sf.freecol.common.model
 

Methods in net.sf.freecol.common.model that return HistoryEvent.Type
 HistoryEvent.Type HistoryEvent.getType()
          Get the Type value.
static HistoryEvent.Type HistoryEvent.Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HistoryEvent.Type[] HistoryEvent.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.sf.freecol.common.model with parameters of type HistoryEvent.Type
 void HistoryEvent.setType(HistoryEvent.Type newType)
          Set the Type value.
 

Constructors in net.sf.freecol.common.model with parameters of type HistoryEvent.Type
HistoryEvent(int turn, HistoryEvent.Type type, java.lang.String... strings)