-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Added bookmark tree support (currently only work with fop renderer)
- Loading branch information
Showing
23 changed files
with
666 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
fj-doc-base/src/main/java/org/fugerit/java/doc/base/model/DocBookmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/***************************************************************** | ||
<copyright> | ||
Fugerit Java Library org.fugerit.java.doc.base | ||
Copyright (c) 2019 Fugerit | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Apache License v2.0 | ||
which accompanies this distribution, and is available at | ||
http://www.apache.org/licenses/ | ||
(txt version : http://www.apache.org/licenses/LICENSE-2.0.txt | ||
html version : http://www.apache.org/licenses/LICENSE-2.0.html) | ||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). | ||
</copyright> | ||
*****************************************************************/ | ||
package org.fugerit.java.doc.base.model; | ||
/* | ||
* @(#)DocTable.java | ||
* | ||
* @project : org.fugerit.java.doc.base | ||
* @package : org.fugerit.java.doc.base | ||
* @creation : 06/set/06 | ||
* @license : META-INF/LICENSE.TXT | ||
*/ | ||
|
||
/** | ||
* | ||
* | ||
* @author fugerit | ||
* | ||
*/ | ||
public class DocBookmark extends DocElement { | ||
|
||
public DocBookmark() { | ||
this.title = ""; | ||
} | ||
|
||
/** | ||
* | ||
*/ | ||
private static final long serialVersionUID = 470846678198846L; | ||
|
||
public static final String TAG_NAME = "bookmark"; | ||
|
||
public static final String ATT_REF = "ref"; | ||
|
||
private String ref; | ||
|
||
private String title; | ||
|
||
public String getRef() { | ||
return ref; | ||
} | ||
|
||
public void setRef(String ref) { | ||
this.ref = ref; | ||
} | ||
|
||
public String getTitle() { | ||
return title; | ||
} | ||
|
||
public void setTitle(String title) { | ||
this.title = title; | ||
} | ||
|
||
} |
43 changes: 43 additions & 0 deletions
43
fj-doc-base/src/main/java/org/fugerit/java/doc/base/model/DocBookmarkTree.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/***************************************************************** | ||
<copyright> | ||
Fugerit Java Library org.fugerit.java.doc.base | ||
Copyright (c) 2019 Fugerit | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Apache License v2.0 | ||
which accompanies this distribution, and is available at | ||
http://www.apache.org/licenses/ | ||
(txt version : http://www.apache.org/licenses/LICENSE-2.0.txt | ||
html version : http://www.apache.org/licenses/LICENSE-2.0.html) | ||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). | ||
</copyright> | ||
*****************************************************************/ | ||
package org.fugerit.java.doc.base.model; | ||
/* | ||
* @(#)DocTable.java | ||
* | ||
* @project : org.fugerit.java.doc.base | ||
* @package : org.fugerit.java.doc.base | ||
* @creation : 06/set/06 | ||
* @license : META-INF/LICENSE.TXT | ||
*/ | ||
|
||
/** | ||
* | ||
* | ||
* @author fugerit | ||
* | ||
*/ | ||
public class DocBookmarkTree extends DocContainer { | ||
|
||
/** | ||
* | ||
*/ | ||
private static final long serialVersionUID = 47084667819886346L; | ||
|
||
public static final String TAG_NAME = "bookmark-tree"; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.