Skip to content

Commit

Permalink
updated the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanrauh committed Apr 15, 2018
1 parent 390f1cd commit e561b76
Showing 1 changed file with 3 additions and 34 deletions.
37 changes: 3 additions & 34 deletions src/main/java/net/bootsfaces/component/panelGrid/PanelGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,38 +88,7 @@ public String getFamily() {
}

protected enum PropertyKeys {
colLg,
colMd,
colSm,
colSpans,
colXs,
columnClasses,
columns,
contentDisabled,
dir,
display,
hidden,
largeScreen,
mediumScreen,
offset,
offsetLg,
offsetMd,
offsetSm,
offsetXs,
rowClasses,
size,
smallScreen,
span,
style,
styleClass,
tinyScreen,
tooltip,
tooltipContainer,
tooltipDelay,
tooltipDelayHide,
tooltipDelayShow,
tooltipPosition,
visible;
colLg, colMd, colSm, colSpans, colXs, columnClasses, columns, contentDisabled, dir, display, hidden, largeScreen, mediumScreen, offset, offsetLg, offsetMd, offsetSm, offsetXs, rowClasses, size, smallScreen, span, style, styleClass, tinyScreen, tooltip, tooltipContainer, tooltipDelay, tooltipDelayHide, tooltipDelayShow, tooltipPosition, visible;
String toString;

PropertyKeys(String toString) {
Expand Down Expand Up @@ -231,15 +200,15 @@ public void setColumnClasses(String _columnClasses) {
}

/**
* Synonym to colSpans: comma-separated list of the column spans <P>
* Determines the number of equal-sized columns. Simple alternative to col-span. Use col-span if you need columns of different widths. <P>
* @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file.
*/
public String getColumns() {
return (String) getStateHelper().eval(PropertyKeys.columns);
}

/**
* Synonym to colSpans: comma-separated list of the column spans <P>
* Determines the number of equal-sized columns. Simple alternative to col-span. Use col-span if you need columns of different widths. <P>
* Usually this method is called internally by the JSF engine.
*/
public void setColumns(String _columns) {
Expand Down

0 comments on commit e561b76

Please sign in to comment.