Interface FormControlNameManager
-
- All Known Implementing Classes:
FormControlNameManagerImpl
public interface FormControlNameManager
Service providing methods related to names that shouldn't be used as form control element names or ids.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getReservedNames()
Returns the set of reserved form names (ones that shouldn't be used as HTML elements client ids).boolean
isReserved(String name)
Tells whether a given name is reserved.
-
-
-
Method Detail
-
getReservedNames
Set<String> getReservedNames()
Returns the set of reserved form names (ones that shouldn't be used as HTML elements client ids).
-
isReserved
boolean isReserved(String name)
Tells whether a given name is reserved.
-
-