当前位置: 首页>>代码示例>>Java>>正文


Java ActionBeanPropertyBinder类代码示例

本文整理汇总了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);
}
 
开发者ID:nkasvosve,项目名称:beyondj,代码行数:5,代码来源:RuntimeConfiguration.java

示例2: initActionBeanPropertyBinder

import net.sourceforge.stripes.controller.ActionBeanPropertyBinder; //导入依赖的package包/类
/** Allows subclasses to initialize a non-default ActionBeanPropertyBinder. */
protected ActionBeanPropertyBinder initActionBeanPropertyBinder() { return null; }
 
开发者ID:nkasvosve,项目名称:beyondj,代码行数:3,代码来源:DefaultConfiguration.java

示例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();
 
开发者ID:nkasvosve,项目名称:beyondj,代码行数:10,代码来源:Configuration.java

示例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;
}
 
开发者ID:nkasvosve,项目名称:beyondj,代码行数:9,代码来源:DefaultConfiguration.java


注:本文中的net.sourceforge.stripes.controller.ActionBeanPropertyBinder类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。