Code Search for Developers
 
 
  

StoryCard.java from MASE: Agile Software Engineering at Krugle


Show StoryCard.java syntax highlighted

package persister;

public interface StoryCard extends IndexCard {
	
	public static final int DEFAULT_WIDTH = 250;
	public static final int DEFAULT_HEIGHT = 125;
	
	public float getActualEffort();
	
	public float getBestCaseEstimate();
	
	public float getMostlikelyEstimate();
	
	public float getWorstCaseEstimate();
	
	public void setActualEffort(float actual);
	
	public void setBestCaseEstimate(float bestcase);
	
	public void setMostlikelyEstimate(float mostlikely);
	
	public void setWorstCaseEstimate(float worstcase);
	
	//DOES NOT UPDATE PARENT RELATION!
	public void update(StoryCard storycard);
}




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