本文整理汇总了Java中org.apache.wicket.model.IWrapModel类的典型用法代码示例。如果您正苦于以下问题:Java IWrapModel类的具体用法?Java IWrapModel怎么用?Java IWrapModel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IWrapModel类属于org.apache.wicket.model包,在下文中一共展示了IWrapModel类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: bind
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public void bind(Component component) {
try {
final IWrapModel<String> model = new ResourceModel(component.getId() + ".hint", null).wrapOnAssignment(component);
this.hint = model.getObject();
} catch (MissingResourceException e) {
hint = null;
}
super.bind(component);
}
开发者ID:Nocket,项目名称:nocket,代码行数:11,代码来源:InputInfoStyleBehavior.java
示例2: newButtonTextOrResourceModelWithDefault
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
/**
* There are two ways for defining the text of a button. First it can be
* taken from the standard property file. Second a string can be given. This
* string will be first searched as a key in the property file. If nothing
* is found the string will be taken as the text shown to the user.
*
* @param modalSettings the modal settings
* @param buttonFlag the button flag
* @param id the id
* @param keyPart the key part
* @return the i wrap model
*/
protected IWrapModel<String> newButtonTextOrResourceModelWithDefault(ModalSettings modalSettings, ButtonFlag buttonFlag, String id,
String keyPart) {
String keyOrText = modalSettings.getKeyOrTextForFlag(buttonFlag);
// If there is a string defined...
if (StringUtils.isNotBlank(keyOrText)) {
// ... search for the string as a key in the property file or use it
// as the default string
return new ResourceModel(keyOrText, keyOrText).wrapOnAssignment(this);
}
// use the standard way
return newResourceModelWithDefault(id, keyPart);
}
开发者ID:Nocket,项目名称:nocket,代码行数:25,代码来源:DMDModalMessagePanel.java
示例3: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<M> wrapOnAssignment(Component component) {
return new WrapModel(component);
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:ReadOnlyMapModel.java
示例4: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<C> wrapOnAssignment(Component component) {
return new WrapModel(component);
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:ReadOnlyCollectionModel.java
示例5: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<T> wrapOnAssignment(Component component) {
return new WrapModel(component);
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:LocaleAwareReadOnlyModel.java
示例6: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<Collection<? extends AbstractSeries<?, V, ?>>> wrapOnAssignment(Component component) {
return new WrapModel(component);
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:AbstractJQPlotDataAdapter.java
示例7: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<String> wrapOnAssignment(Component component) {
return new AssignmentWrapper(component);
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:CountMessageModel.java
示例8: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
public IWrapModel<String> wrapOnAssignment(final Component component) {
return new AssignmentWrapper(resourceBaseName + propertyName, null, component);
}
开发者ID:Nocket,项目名称:nocket,代码行数:4,代码来源:UpperAndLowerCaseResourceModel.java
示例9: wrapOnAssignment
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
@Override
public IWrapModel<R> wrapOnAssignment(Component component) {
// reuses the functionality of ComponentPropertyModel, although only minimally
return new AssignmentWrapper(new ComponentPropertyModel<T>(expression).wrapOnAssignment(component));
}
开发者ID:flex-oss,项目名称:flex-ui,代码行数:6,代码来源:ComponentPropertyTransformingModel.java
示例10: newResourceModelWithDefault
import org.apache.wicket.model.IWrapModel; //导入依赖的package包/类
/**
* New resource model with default.
*
* @param id the id
* @param keyPart the key part
* @return the i wrap model
*/
protected IWrapModel<String> newResourceModelWithDefault(String id, String keyPart) {
return new ResourceModel(id + "." + keyPart, new ResourceModel(keyPart).wrapOnAssignment(this).getObject()).wrapOnAssignment(this);
}
开发者ID:Nocket,项目名称:nocket,代码行数:11,代码来源:DMDModalMessagePanel.java
注:本文中的org.apache.wicket.model.IWrapModel类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论