Convert style information for used styles
* @param sIndent a String of spaces to add before each line */ - public String getStyleDeclarations(String sIndent) { + public String getStyleSelectors(String sIndent) { if (bConvertStyles) { StringBuilder buf = new StringBuilder(); EnumerationConvert style information for used styles
* @param sIndent a String of spaces to add before each line */ - public String getStyleDeclarations(String sIndent) { + public String getStyleSelectors(String sIndent) { if (bConvertStyles) { StringBuilder buf = new StringBuilder(); - buf.append(super.getStyleDeclarations(sIndent)); + buf.append(super.getStyleSelectors(sIndent)); EnumerationConvert style information for used styles
* @param sIndent a String of spaces to add before each line */ - public abstract String getStyleDeclarations(String sIndent); + public abstract String getStyleSelectors(String sIndent); } diff --git a/src/main/java/writer2latex/xhtml/style/StyleParser.java b/src/main/java/writer2latex/xhtml/style/StyleParser.java index e1160b9..c50fea6 100644 --- a/src/main/java/writer2latex/xhtml/style/StyleParser.java +++ b/src/main/java/writer2latex/xhtml/style/StyleParser.java @@ -128,7 +128,7 @@ public class StyleParser extends Parser { * @param bIndent true if the CSS code should be indented * @return the CSS code */ - public String exportStyles(boolean bIndent) { + public String allStyleSelectors(boolean bIndent) { String sIndent = bIndent ? " " : ""; StringBuilder buf = new StringBuilder(); @@ -139,17 +139,17 @@ public class StyleParser extends Parser { // Text documents: text, par, list, frame // Spreadsheet documents: cell // Presentation documents: frame, presentation, page - buf.append(getTextSc().getStyleDeclarations(sIndent)); - buf.append(getParSc().getStyleDeclarations(sIndent)); - buf.append(getHeadingSc().getStyleDeclarations(sIndent)); - buf.append(getListSc().getStyleDeclarations(sIndent)); - buf.append(getSectionSc().getStyleDeclarations(sIndent)); - buf.append(getCellSc().getStyleDeclarations(sIndent)); - buf.append(getTableSc().getStyleDeclarations(sIndent)); - buf.append(getRowSc().getStyleDeclarations(sIndent)); - buf.append(getFrameSc().getStyleDeclarations(sIndent)); - buf.append(getPresentationSc().getStyleDeclarations(sIndent)); - buf.append(getPageSc().getStyleDeclarations(sIndent)); + buf.append(textSc.getStyleSelectors(sIndent)); + buf.append(parSc.getStyleSelectors(sIndent)); + buf.append(headingSc.getStyleSelectors(sIndent)); + buf.append(listSc.getStyleSelectors(sIndent)); + buf.append(sectionSc.getStyleSelectors(sIndent)); + buf.append(cellSc.getStyleSelectors(sIndent)); + buf.append(tableSc.getStyleSelectors(sIndent)); + buf.append(rowSc.getStyleSelectors(sIndent)); + buf.append(frameSc.getStyleSelectors(sIndent)); + buf.append(presentationSc.getStyleSelectors(sIndent)); + buf.append(pageSc.getStyleSelectors(sIndent)); return buf.toString(); } @@ -158,18 +158,18 @@ public class StyleParser extends Parser { * @param htmlDOM the XHTML DOM to which the generated element belongs * @return the style element */ - public Node exportStyles(Document htmlDOM) { - String sStyles = exportStyles(config.prettyPrint()); + public Node getStyleSelectors(Document htmlDOM) { + String styleSelectors = allStyleSelectors(config.prettyPrint()); // Create node - if (sStyles.length()>0) { - Element htmlStyle = htmlDOM.createElement("style"); - htmlStyle.setAttribute("media","all"); - htmlStyle.setAttribute("type","text/css"); - htmlStyle.appendChild(htmlDOM.createTextNode(config.prettyPrint() ? "\n" : " ")); - htmlStyle.appendChild(htmlDOM.createTextNode(sStyles)); - if (config.prettyPrint()) { htmlStyle.appendChild(htmlDOM.createTextNode(" ")); } - return htmlStyle; + if (styleSelectors.length()>0) { + Element styleElement = htmlDOM.createElement("style"); + styleElement.setAttribute("media","all"); + styleElement.setAttribute("type","text/css"); + styleElement.appendChild(htmlDOM.createTextNode(config.prettyPrint() ? "\n" : " ")); + styleElement.appendChild(htmlDOM.createTextNode(styleSelectors)); + if (config.prettyPrint()) { styleElement.appendChild(htmlDOM.createTextNode(" ")); } + return styleElement; } else { return null; diff --git a/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java b/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java index ee7f289..8b96fc0 100644 --- a/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java +++ b/src/main/java/writer2latex/xhtml/style/StyleWithPropertiesParser.java @@ -95,7 +95,7 @@ public abstract class StyleWithPropertiesParser /** Convert style information for used styles * @param sIndent a String of spaces to add before each line */ - public String getStyleDeclarations(String sIndent) { + public String getStyleSelectors(String sIndent) { if (bConvertStyles) { StringBuilder buf = new StringBuilder(); Enumeration