Code Search for Developers
 
 
  

MagellanEnvironment.java from Magellan-Client at Krugle


Show MagellanEnvironment.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.main;

import java.util.Properties;

import com.eressea.event.EventDispatcher;

/**
 * This class keeps all anchors to global resources e.g. EventDispatcher, Properties, perhaps different stuff<br>
 */
public interface MagellanEnvironment {

	/** 
	 * Returns the properties of Magellan.
	 */
	public Properties getProperties();
	
	/** 
	 * Returns the EventDispatcher of Magellan.
	 */
	public EventDispatcher getEventDispatcher();
	
	/** 
	 * Initializes global resources.
	 */
	public void init();
}





See more files for this project here

Magellan-Client

The Magellan Client is basicly a GUI for the pbem game eressea but can be used for other pbems based on \"atlantis\" too.

Project homepage: http://sourceforge.net/projects/magellan-client
Programming language(s): Java
License: other

  MagellanContext.java
  MagellanEnvironment.java