Show CompleterSettingsProvider.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.completion;
import java.util.List;
/**
* TODO: DOCUMENT ME!
*
* @author $author$
* @version $Revision: 171 $
*/
public interface CompleterSettingsProvider {
/**
* Delivers a list of completions for self defined completions.
*
* @return TODO: DOCUMENT ME!
*/
public List getSelfDefinedCompletions();
/**
* Returns true iff LimitMakeCompletion is turned on
*
* @return TODO: DOCUMENT ME!
*/
public boolean getLimitMakeCompletion();
}
See more files for this project here