Class CssClassInfo
- java.lang.Object
-
- de.xima.fc.gui.designer.form.model.CssClassInfo
-
- All Implemented Interfaces:
Serializable
public class CssClassInfo extends Object implements Serializable
Represents an analyzed CSS class. The form designer uses these to offer a selection of available CSS classes from CSS files. The user can choose which style classes they wish to apply to a form element.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CssClassInfo(String className)
Creates a new CSS class info a CSS style class with the given name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addIndex(int index)
String
getClassName()
Set<Integer>
getIndices()
-
-
-
Constructor Detail
-
CssClassInfo
public CssClassInfo(String className)
Creates a new CSS class info a CSS style class with the given name.- Parameters:
className
- Name of the CSS style class.
-
-
Method Detail
-
addIndex
public void addIndex(int index)
- Parameters:
index
- An additional source file index to add that will be included ingetIndices()
.
-
getClassName
public String getClassName()
- Returns:
- Name of the CSS class.
-
-