Show Named.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 granting access to the name of an object.
*/
public interface Named {
/**
* Returns the name of this object.
*
* @return TODO: DOCUMENT ME!
*/
public String getName();
/**
* TODO DOCUMENT ME!
*
* @return TODO DOCUMENT ME!
*/
public String getModifiedName();
}
See more files for this project here