use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SCConfigViewBean method initialize.
protected void initialize() {
if (!initialized) {
super.initialize();
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/simplePageTitle.xml"));
createPropertyModel();
registerChildren();
initialized = true;
}
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class MAPCreateDeviceTwoViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.back");
ptModel.setValue("button2", "button.finish");
ptModel.setValue("button3", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class MAPClientManagerViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", "button.close");
ptModel.setPageTitleText("map.client.manager.window.title");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class MAPDuplicationDeviceViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.duplicate");
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class G11NSupportedCharsetsViewBeanBase method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setPageTitleText(getPageTitleText());
ptModel.setValue("button1", getButtonlLabel());
ptModel.setValue("button2", "button.cancel");
}
Aggregations