本文整理汇总了Java中net.sourceforge.stripes.controller.ActionBeanPropertyBinder类的典型用法代码示例。如果您正苦于以下问题:Java ActionBeanPropertyBinder类的具体用法?Java ActionBeanPropertyBinder怎么用?Java ActionBeanPropertyBinder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ActionBeanPropertyBinder类属于net.sourceforge.stripes.controller包,在下文中一共展示了ActionBeanPropertyBinder类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initActionBeanPropertyBinder
import net.sourceforge.stripes.controller.ActionBeanPropertyBinder; //导入依赖的package包/类
/** Looks for a class name in config and uses that to create the component. */
@Override protected ActionBeanPropertyBinder initActionBeanPropertyBinder() {
return initializeComponent(ActionBeanPropertyBinder.class, ACTION_BEAN_PROPERTY_BINDER);
}
示例2: initActionBeanPropertyBinder
import net.sourceforge.stripes.controller.ActionBeanPropertyBinder; //导入依赖的package包/类
/** Allows subclasses to initialize a non-default ActionBeanPropertyBinder. */
protected ActionBeanPropertyBinder initActionBeanPropertyBinder() { return null; }
示例3: getActionBeanPropertyBinder
import net.sourceforge.stripes.controller.ActionBeanPropertyBinder; //导入依赖的package包/类
/**
* Returns an instance of ActionBeanPropertyBinder that is responsible for binding all
* properties to all ActionBeans at runtime. The instance should be cached by the Configuration
* since multiple entities in the system may access the ActionBeanPropertyBinder throughout the
* lifetime of the application.
*
* @return ActionBeanPropertyBinder the property binder to be used by Stripes
*/
ActionBeanPropertyBinder getActionBeanPropertyBinder();
示例4: getActionBeanPropertyBinder
import net.sourceforge.stripes.controller.ActionBeanPropertyBinder; //导入依赖的package包/类
/**
* Returns an instance of {@link DefaultActionBeanPropertyBinder} unless a subclass has
* overridden the default.
* @return ActionBeanPropertyBinder an instance of the configured binder
*/
public ActionBeanPropertyBinder getActionBeanPropertyBinder() {
return this.actionBeanPropertyBinder;
}