Show HasRegion.java syntax highlighted
/*
* Copyright (C) 2000-2004 Roger Butenuth, Andreas Gampe,
* Stefan Goetz, Sebastian Pappert,
* Klaas Prause, Enno Rehling,
* Sebastian Tusk, Ulrich Kuester,
* Ilja Pavkovic
*
* This file is part of the Eressea Java Code Base, see the
* file LICENSING for the licensing information applying to
* this file.
*
*/
package com.eressea;
/**
* An interface for all objects belonging to a region.
*/
public interface HasRegion {
/**
* TODO: DOCUMENT ME!
*
* @param region TODO: DOCUMENT ME!
*/
public void setRegion(Region region);
/**
* TODO: DOCUMENT ME!
*
* @return TODO: DOCUMENT ME!
*/
public Region getRegion();
}
See more files for this project here