this.renderer = renderer;
}
public void print(String storyPath, String storyPackage) throws MalformedURLException {
Story story = storyLoader.loadStory(storyPath, storyPackage);
story.narrateTo(renderer);
}
public void print(String storyClassName) throws InstantiationException, IllegalAccessException, ClassNotFoundException{
Story story = storyLoader.loadStory(storyClassName);
story.specify();