本文整理汇总了Java中com.haulmont.cuba.gui.components.AbstractWindow类的典型用法代码示例。如果您正苦于以下问题:Java AbstractWindow类的具体用法?Java AbstractWindow怎么用?Java AbstractWindow使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbstractWindow类属于com.haulmont.cuba.gui.components包,在下文中一共展示了AbstractWindow类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: wrapByCustomClass
import com.haulmont.cuba.gui.components.AbstractWindow; //导入依赖的package包/类
protected Frame wrapByCustomClass(Frame frame) {
String screenClass = element.attributeValue("class");
if (StringUtils.isBlank(screenClass)) {
screenClass = AbstractFrame.class.getName();
}
Class<?> aClass = scripting.loadClass(screenClass);
if (aClass == null) {
aClass = ReflectionHelper.getClass(screenClass);
}
if (aClass == null) {
throw new GuiDevelopmentException("Unable to load controller class", frame.getId());
}
if (AbstractWindow.class.isAssignableFrom(aClass)) {
LoggerFactory.getLogger(FrameLoader.class).warn(
"Frame class '{}' should not be inherited from AbstractWindow. " +
"It may cause problems with controller life cycle. " +
"Frame controllers should inherit AbstractFrame.",
aClass.getSimpleName());
}
return ((WrappedFrame) frame).wrapBy(aClass);
}