com.publicobject.issuesbrowser.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists Show documentation
Show all versions of glazedlists Show documentation
Event-driven lists for dynamically filtered and sorted tables
The newest version!
/* Glazed Lists (c) 2003-2011 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package com.publicobject.issuesbrowser;
import java.awt.Color;
/**
* Status
is an interface for the status field of an issue.
*
* @author Holger Brands
*/
public interface Status {
/**
* @return the id of this status
*/
String getId();
/**
* @return the name of this status
*/
String getName();
/**
* @return the color associated with this status
*/
Color getColor();
/**
* @return true
, if status repesents an issue, that is not yet done (resolved,
* verified or closed)
*/
boolean isActive();
}