Skip to content

Commit 3fdb221

Browse files
committed
javadoc fixes
1 parent a5edf3f commit 3fdb221

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main/java/com/gargoylesoftware/css/dom/CSSFontFaceRuleImpl.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)