nosi.webapps.igrp.pages.home.HomeAppView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.pages.home;
import nosi.core.gui.components.IGRPButton;
import nosi.core.gui.components.IGRPHome;
import nosi.core.gui.components.IGRPToolsBar;
import nosi.core.webapp.View;
public class HomeAppView extends View{
public String title;
public IGRPHome home;
public IGRPToolsBar toolsbar_1;
public IGRPButton btn_gestao_de_paginas;
public IGRPButton btn_import_jar;
public IGRPButton btn_report_designer;
public HomeAppView() {
home = new IGRPHome("home-app");
}
@Override
public void render() {
this.addToPage(home);
}
}