
gr.demokritos.iit.jinsect.gui.IStatusDisplayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JInsect Show documentation
Show all versions of JInsect Show documentation
The JINSECT toolkit is a Java-based toolkit and library that supports and demonstrates the use of n-gram graphs within Natural Language Processing applications, ranging from summarization and summary evaluation to text classification and indexing.
The newest version!
/*
* IStatusDisplayer.java
*
* Created on May 23, 2007, 1:21 PM
*
*/
package gr.demokritos.iit.jinsect.gui;
/**
*
* @author ggianna
*/
public interface IStatusDisplayer {
/**Should set the status and the value as an indication of progress.
*/
public void setStatus(final String sText, final double dValue);
/**Should return the text part of the status.
*/
public String getStatusText();
/**Should indicate whether the status should be displayed.
*/
public void setVisible(boolean bShow);
/**Should indicate whether the status is displayed or not.
*/
public boolean getVisible();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy