Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
thmuelle committed Nov 17, 2009
1 parent 4dd5841 commit b93feac
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/de/uni_tuebingen/wsi/ct/slang2/dbc/tools/Writer.java
Expand Up @@ -76,7 +76,13 @@ public void makeBook(String title, String author, int year) {
public void makeChapter(String title, int index, String date) {
chapter = new Chapter(key, -1, -1, index, title, date);
}


public void makeChapter( Book book , String title , int index , String date )
{
this.book = book;
chapter = new Chapter(key, -1, book.getDB_ID(), index, title, date);
}

public void setChapter(Chapter chapter) {
this.chapter = chapter;
chapter.setBookID(key, -1);
Expand Down

0 comments on commit b93feac

Please sign in to comment.