Refactored methods
This commit is contained in:
parent
ca7d63ac18
commit
7832321672
1 changed files with 35 additions and 32 deletions
|
@ -62,6 +62,40 @@ public class GreenstoneTags {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
protected static void processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
||||
|
||||
|
||||
if ( !( currentNode.getNodeType() == Node.ELEMENT_NODE
|
||||
&& currentNode.getNodeName().equals(XMLString.TEXT_H)
|
||||
&& Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL) != null
|
||||
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
||||
)
|
||||
&& !headerStack.isEmpty()
|
||||
) {
|
||||
if (pageSection) {
|
||||
closeSection(hnode);
|
||||
pageSection = false;
|
||||
|
||||
}
|
||||
if (pageNum != null) {
|
||||
openSection(hnode, pageNum);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
//Method to open main document tag
|
||||
protected static void StartDocument(Node hnode, String title){
|
||||
openSection(hnode, title);
|
||||
}
|
||||
//Method to close open tags at the end of the document
|
||||
protected static void endDocument(Node hnode){
|
||||
if (pageSection){
|
||||
closeSection(hnode);
|
||||
pageSection = false;
|
||||
}
|
||||
closeSection(hnode);
|
||||
}
|
||||
|
||||
private static String getTitle(Node currentNode) {
|
||||
Node content = currentNode.cloneNode(true);
|
||||
NodeList contentNodes = content.getChildNodes();
|
||||
|
@ -86,39 +120,8 @@ public class GreenstoneTags {
|
|||
|
||||
return title;
|
||||
}
|
||||
static void processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
||||
|
||||
|
||||
if ( !( currentNode.getNodeType() == Node.ELEMENT_NODE
|
||||
&& currentNode.getNodeName().equals(XMLString.TEXT_H)
|
||||
&& Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL) != null
|
||||
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
||||
)
|
||||
&& !headerStack.isEmpty()
|
||||
) {
|
||||
if (pageSection) {
|
||||
closeSection(hnode);
|
||||
pageSection = false;
|
||||
|
||||
}
|
||||
if (pageNum != null) {
|
||||
openSection(hnode, pageNum);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
//Method to open main document tag
|
||||
static void StartDocument(Node hnode, String title){
|
||||
openSection(hnode, title);
|
||||
}
|
||||
//Method to close open tags at the end of the document
|
||||
static void endDocument(Node hnode){
|
||||
if (pageSection){
|
||||
closeSection(hnode);
|
||||
pageSection = false;
|
||||
}
|
||||
closeSection(hnode);
|
||||
}
|
||||
|
||||
private static void openSection(Node hnode, Integer pageNum){
|
||||
Document doc = hnode.getOwnerDocument();
|
||||
String commentText = "<Section>\n<Description>\n<Metadata name=\"Title\">" + pageNum
|
||||
|
|
Loading…
Add table
Reference in a new issue