Package org.opentides.editor

Examples of org.opentides.editor.UserGroupEditor


   * Implements initBinder from BaseCrudController to bind UserGroup class
   */
  @Override
  protected void initBinder(HttpServletRequest arg0,
      ServletRequestDataBinder binder) throws Exception {
    PropertyEditorSupport pes = new UserGroupEditor(userGroupService);
    binder.registerCustomEditor(UserGroup.class, pes);
    binder.registerCustomEditor(SystemCodes.class, new SystemCodeEditor(getSystemCodesService()));
  }
View Full Code Here

TOP

Related Classes of org.opentides.editor.UserGroupEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.