Uses of Interface
darwin.domain.Species

Packages that use Species
darwin.domain Contains the core domain classes for the Darwin world. 
 

Uses of Species in darwin.domain
 

Classes in darwin.domain that implement Species
 class MySpecies
          The individual creatures in the world are all representatives of some species class and share certain common characteristics, such as the species name and the program they execute.
 

Methods in darwin.domain that return Species
 Species Creature.getSpecies()
          Determine the Species of this Creature.
 

Methods in darwin.domain with parameters of type Species
 void Creature.setSpecies(Species aSpecies)
          Set the Species of this Creature.
 

Constructors in darwin.domain with parameters of type Species
MyCreature(Species aSpecies, World aWorld, java.awt.Point aPosition, Direction aDirection)
          Create a MyCreature of the given Species, with the indicated position and direction.