Show ContextChangeable.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.
*
*/
/*
* ContextChangeable.java
*
* Created on 1. März 2002, 15:32
*/
package com.eressea.swing.context;
import javax.swing.JMenuItem;
/**
* DOCUMENT ME!
*
* @author Andreas
* @version
*/
public interface ContextChangeable {
/**
* TODO: DOCUMENT ME!
*
* @return TODO: DOCUMENT ME!
*/
public JMenuItem getContextAdapter();
/**
* TODO: DOCUMENT ME!
*
* @param co TODO: DOCUMENT ME!
*/
public void setContextObserver(ContextObserver co);
}
See more files for this project here