Show IndexCard.java syntax highlighted
package persister;
/**
* @author webers
*
* DO NOT IMPLEMENT THIS INTERFACE!
*
* FOR INTERNAL USE ONLY
*
*/
public interface IndexCard extends AbstractRoot {
public static final int DEFAULT_LOCATION_X = 50;
public static final int DEFAULT_LOCATION_Y = 50;
public static final String STATUS_DEFINED = "Defined";
public static final String STATUS_TODO = "ToDo";
public static final String STATUS_IN_PROGRESS = "In Progress";
public static final String STATUS_COMPLETED = "Completed";
public String getDescription();
public int getHeight();
public int getLocationX();
public int getLocationY();
public long getParent();
public float getRemainingEffort() ;
public String getStatus();
public int getWidth();
public boolean isCompleted();
public boolean isStarted();
public void setDescription(String description);
public void setHeight(int height);
public void setLocationX(int locationX);
public void setLocationY(int locationY);
public void setParent(long id);
public void setStatus(String status);
public void setWidth(int width);
}
See more files for this project here