@@ -74,15 +74,6 @@ protected void setSelectedIndex(int index, boolean incremental) {
74
74
});
75
75
}
76
76
77
- /**
78
- * Gets the strict property.
79
- *
80
- * @return the value of strict property.
81
- */
82
- public boolean isStrict () {
83
- return getAutoCompletion ().isStrict ();
84
- }
85
-
86
77
/**
87
78
* Sets the strict property. If true, it will not allow user to type in anything that is not in the known item list.
88
79
* If false, user can type in whatever he/she wants. If the text can match with a item in the known item list, it
@@ -94,23 +85,13 @@ public void setStrict(boolean strict) {
94
85
getAutoCompletion ().setStrict (strict );
95
86
}
96
87
97
- /**
98
- * Gets the strict completion property.
99
- *
100
- * @return the value of strict completion property.
101
- * @see #setStrictCompletion(boolean)
102
- */
103
- public boolean isStrictCompletion () {
104
- return getAutoCompletion ().isStrictCompletion ();
105
- }
106
-
107
88
/**
108
89
* Sets the strict completion property. If true, in case insensitive searching, it will always use the exact item in
109
90
* the Searchable to replace whatever user types. For example, when Searchable has an item "Arial" and user types in
110
91
* "AR", if this flag is true, it will auto-completed as "Arial". If false, it will be auto-completed as "ARial". Of
111
92
* course, this flag will only make a difference if Searchable is case insensitive.
112
93
*
113
- * @param strictCompletion
94
+ * @param strictCompletion true or false.
114
95
*/
115
96
public void setStrictCompletion (boolean strictCompletion ) {
116
97
getAutoCompletion ().setStrictCompletion (strictCompletion );
0 commit comments