Code Search for Developers
 
 
  

PreferencesAdapter.java from Magellan-Client at Krugle


Show PreferencesAdapter.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.swing.preferences;

import java.awt.Component;

/**
 * TODO: DOCUMENT ME!
 *
 * @author $author$
 * @version $Revision: 269 $
 */
public interface PreferencesAdapter {

    /**
     * This function is called for initializing the preferences.
     */
    public void initPreferences(); 
    
	/**
	 * This function is called for applying the preferences.
	 */
	public void applyPreferences();

	/**
	 * This function delivers the gui for the preferences adapter.
	 *
	 * @return TODO: DOCUMENT ME!
	 */
	public Component getComponent();

	/**
	 * This function delivers the visible name of the preferences adapter.
	 *
	 * @return TODO: DOCUMENT ME!
	 */
	public String getTitle();
}




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

  DetailedPreferencesAdapter.java
  ExtendedPreferencesAdapter.java
  PathPreferencesAdapter.java
  PreferencesAdapter.java
  PreferencesDialog.java
  PreferencesFactory.java