Introduce publishing styles.
[gpl/argeo-suite.git] / publishing / org.argeo.publishing.ui / src / org / argeo / cms / text / TextSection.java
index b7b07797f922e0d66e38b7b1baa942eee08830b7..ef4bb0f38d2cbc39908320f14bcdf085e519e191 100644 (file)
@@ -1,7 +1,6 @@
 package org.argeo.cms.text;
 
 import javax.jcr.Node;
-import javax.jcr.RepositoryException;
 
 import org.argeo.cms.ui.util.CmsUiUtils;
 import org.argeo.cms.ui.viewers.Section;
@@ -13,18 +12,15 @@ public class TextSection extends Section implements CmsNames {
        private String defaultTextStyle = TextStyles.TEXT_DEFAULT;
        private String titleStyle;
 
-       public TextSection(Composite parent, int style, Node node)
-                       throws RepositoryException {
+       public TextSection(Composite parent, int style, Node node) {
                this(parent, findSection(parent), style, node);
        }
 
-       public TextSection(TextSection section, int style, Node node)
-                       throws RepositoryException {
+       public TextSection(TextSection section, int style, Node node) {
                this(section, section.getParentSection(), style, node);
        }
 
-       private TextSection(Composite parent, Section parentSection, int style,
-                       Node node) throws RepositoryException {
+       private TextSection(Composite parent, Section parentSection, int style, Node node) {
                super(parent, parentSection, style, node);
                CmsUiUtils.style(this, TextStyles.TEXT_SECTION);
        }
@@ -38,8 +34,7 @@ public class TextSection extends Section implements CmsNames {
                        return titleStyle;
                // TODO make base H styles configurable
                Integer relativeDepth = getRelativeDepth();
-               return relativeDepth == 0 ? TextStyles.TEXT_TITLE : TextStyles.TEXT_H
-                               + relativeDepth;
+               return relativeDepth == 0 ? TextStyles.TEXT_TITLE : TextStyles.TEXT_H + relativeDepth;
        }
 
        public void setDefaultTextStyle(String defaultTextStyle) {