File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/main/java/com/gargoylesoftware/css/dom Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ public class CSSFontFaceRuleImpl extends AbstractCSSRuleImpl {
3333
3434 private CSSStyleDeclarationImpl style_ ;
3535
36+ /**
37+ * Ctor.
38+ * @param parentStyleSheet the parent style sheet
39+ * @param parentRule the parent rule
40+ */
3641 public CSSFontFaceRuleImpl (final CSSStyleSheetImpl parentStyleSheet , final AbstractCSSRuleImpl parentRule ) {
3742 super (parentStyleSheet , parentRule );
3843 }
@@ -94,10 +99,17 @@ public void setCssText(final String cssText) throws DOMException {
9499 }
95100 }
96101
102+ /**
103+ * @return the style
104+ */
97105 public CSSStyleDeclarationImpl getStyle () {
98106 return style_ ;
99107 }
100108
109+ /**
110+ * Sets the style to a new one.
111+ * @param style the new style
112+ */
101113 public void setStyle (final CSSStyleDeclarationImpl style ) {
102114 style_ = style ;
103115 }
You can’t perform that action at this time.
0 commit comments