use of eu.etaxonomy.cdm.remote.editor.MatchModePropertyEditor in project cdmlib by cybertaxonomy.
the class TaxonListController method initBinder.
@InitBinder
@Override
public void initBinder(WebDataBinder binder) {
super.initBinder(binder);
binder.registerCustomEditor(DefinedTermBaseList.class, new TermBaseListPropertyEditor<NamedArea>(termService));
binder.registerCustomEditor(MatchMode.class, new MatchModePropertyEditor());
binder.registerCustomEditor(Rank.class, new RankPropertyEditor());
binder.registerCustomEditor(PresenceAbsenceTerm.class, new TermBasePropertyEditor<PresenceAbsenceTerm>(termService));
}
use of eu.etaxonomy.cdm.remote.editor.MatchModePropertyEditor in project cdmlib by cybertaxonomy.
the class TaxonPortalController method initBinder.
@InitBinder
@Override
public void initBinder(WebDataBinder binder) {
super.initBinder(binder);
binder.registerCustomEditor(NamedArea.class, new NamedAreaPropertyEditor());
binder.registerCustomEditor(MatchMode.class, new MatchModePropertyEditor());
binder.registerCustomEditor(Class.class, new CdmTypePropertyEditor());
binder.registerCustomEditor(UuidList.class, new UUIDListPropertyEditor());
binder.registerCustomEditor(DefinedTermBaseList.class, new TermBaseListPropertyEditor<>(termService));
}
use of eu.etaxonomy.cdm.remote.editor.MatchModePropertyEditor in project cdmlib by cybertaxonomy.
the class AbstractIdentifiableController method initBinder.
@InitBinder
@Override
public void initBinder(WebDataBinder binder) {
super.initBinder(binder);
binder.registerCustomEditor(MatchMode.class, new MatchModePropertyEditor());
}
use of eu.etaxonomy.cdm.remote.editor.MatchModePropertyEditor in project cdmlib by cybertaxonomy.
the class AbstractIdentifiableListController method initBinder.
@InitBinder
@Override
public void initBinder(WebDataBinder binder) {
super.initBinder(binder);
binder.registerCustomEditor(MatchMode.class, new MatchModePropertyEditor());
}
Aggregations