Skip to content

Commit

Permalink
Add missing changed_added_4_0 styles
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Feb 21, 2021
1 parent 5939be8 commit e3c5bf1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public void setLang(java.lang.String lang) {
}

/**
* <p>
* <p class="changed_added_4_0">
* Return the value of the <code>multiple</code> property.
* </p>
* <p>
Expand All @@ -271,22 +271,21 @@ public void setLang(java.lang.String lang) {
* multiple="multiple".
*
* @return the value of the property
*
*/
public boolean isMultiple() {
return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.multiple, false);

}

/**
* <p>
* <p class="changed_added_4_0">
* Set the value of the <code>multiple</code> property.
* </p>
*
* @param multiple the new property value
*
*/
public void setMaxlength(boolean multiple) {
public void setMultiple(boolean multiple) {
getStateHelper().put(PropertyKeys.multiple, multiple);
handleAttribute("multiple", multiple);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11437,9 +11437,9 @@
</attribute>
<attribute>
<description>
<![CDATA[Flag indicating that this element must allow multiple file selection. A value
<![CDATA[<span class="changed_added_4_0">Flag indicating that this element must allow multiple file selection. A value
of false causes no attribute to be rendered, while a value of true causes the attribute to be rendered as
multiple="multiple".]]>
multiple="multiple".</span>]]>
</description>
<name>multiple</name>
<required>false</required>
Expand Down

0 comments on commit e3c5bf1

Please sign in to comment.