Code Search for Developers
 
 
  

IndexCard.java from MASE: Agile Software Engineering at Krugle


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

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  distributed/
    CallbackCommunicator.java
    ClientCommunicator.java
    ServerCommunicator.java
  impl/
    data/
      BacklogDataObject.java
      EventDataObject.java
      IterationDataObject.java
      MessageDataObject.java
      ProjectDataObject.java
      StoryCardDataObject.java
  local/
    AsynchronousLocalPersister.java
    DummyDistributedUI.java
    PersisterToXML.java
  network/
    CallbackThread.java
    NetworkClient.java
    NetworkServer.java
    ServerContext.java
    ServerThreadWorker.java
  util/
    FileSystemIDGenerator.java
  AbstractRoot.java
  AgilePlannerClient.java
  AgilePlannerServer.java
  AsynchronousPersister.java
  Backlog.java
  ConnectionFailedException.java
  CouldNotLoadProjectException.java
  ForbiddenOperationException.java
  IndexCard.java
  IndexCardNotFoundException.java
  IndexCardWithChild.java
  Iteration.java
  Keystroke.java
  Message.java
  MouseClick.java
  MouseMove.java
  NotConnectedException.java
  PlannerDataChangeListener.java
  PlannerUIChangeListener.java
  Project.java
  StoryCard.java
  SynchronousPersister.java
  UIEventPropagator.java