Show Project.java syntax highlighted
package persister;
import java.util.List;
public interface Project extends AbstractRoot {
public void addIteration(IndexCardWithChild iteration);
public Backlog getBacklog();
public List<Iteration> getIterationChildren();
public void removeIteration(IndexCardWithChild iteration);
public void setBacklog(Backlog backlog);
public void setIterationChildren(List<Iteration> iterations);
}
See more files for this project here