Show IndexCardWithChild.java syntax highlighted
package persister;
import java.util.List;
/**
* @author webers
*
* DO NOT IMPLEMENT THIS INTERFACE!
*
* FOR INTERNAL USE ONLY
*
*/
public interface IndexCardWithChild extends IndexCard {
public void addStoryCard(StoryCard storycard);
public List<StoryCard> getStoryCardChildren();
public void removeStoryCard(StoryCard storycard);
public void setStoryCardChildren(List<StoryCard> storycards);
}
See more files for this project here