Class CssInfo
- java.lang.Object
-
- de.xima.fc.gui.designer.form.model.CssInfo
-
- All Implemented Interfaces:
Serializable
public class CssInfo extends Object implements Serializable
Represents an analyzed CSS file. Used by the form designer for various features.- Since:
- 7.1.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CssInfo(CssClassInfo classInfo, CssFontFaceInfo fontFaceInfo)
Creates a new POJO with the given data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CssClassInfo
getClassInfo()
CssFontFaceInfo
getFontFaceInfo()
-
-
-
Constructor Detail
-
CssInfo
public CssInfo(CssClassInfo classInfo, CssFontFaceInfo fontFaceInfo)
Creates a new POJO with the given data.- Parameters:
classInfo
- Value returned bygetClassInfo()
.fontFaceInfo
- Value returned bygetFontFaceInfo()
.
-
-
Method Detail
-
getClassInfo
public CssClassInfo getClassInfo()
- Returns:
- Info about the CSS classes contained in the selectors of the CSS file.
-
getFontFaceInfo
public CssFontFaceInfo getFontFaceInfo()
- Returns:
- Info about the font face rules declared in the CSS file.
-
-