/* * Top.java * * Created on September 20, 2007, 11:04 AM * Copyright lluis */ package analiseacidentestrabalho; import com.sun.rave.web.ui.appbase.AbstractFragmentBean; import com.sun.rave.web.ui.component.Hyperlink; import com.sun.rave.web.ui.component.ImageComponent; import com.sun.rave.web.ui.component.PanelGroup; import com.sun.rave.web.ui.component.StaticText; import javax.faces.FacesException; import javax.faces.component.html.HtmlPanelGrid; /** *
Fragment bean that corresponds to a similarly named JSP page * fragment. This class contains component definitions (and initialization * code) for all components that you have defined on this fragment, as well as * lifecycle methods and event handlers where you may add behavior * to respond to incoming events.
*/ public class Top extends AbstractFragmentBean { //Automatically managed component initialization. WARNING: * This method is automatically generated, so any user-specified code inserted * here is subject to being replaced.
*/ private void _init() throws Exception { } private HtmlPanelGrid gridPanel1 = new HtmlPanelGrid(); public HtmlPanelGrid getGridPanel1() { return gridPanel1; } public void setGridPanel1(HtmlPanelGrid hpg) { this.gridPanel1 = hpg; } private PanelGroup groupPanel1 = new PanelGroup(); public PanelGroup getGroupPanel1() { return groupPanel1; } public void setGroupPanel1(PanelGroup pg) { this.groupPanel1 = pg; } private ImageComponent image1 = new ImageComponent(); public ImageComponent getImage1() { return image1; } public void setImage1(ImageComponent ic) { this.image1 = ic; } private ImageComponent image2 = new ImageComponent(); public ImageComponent getImage2() { return image2; } public void setImage2(ImageComponent ic) { this.image2 = ic; } private PanelGroup groupPanel2 = new PanelGroup(); public PanelGroup getGroupPanel2() { return groupPanel2; } public void setGroupPanel2(PanelGroup pg) { this.groupPanel2 = pg; } private StaticText lblUser = new StaticText(); public StaticText getLblUser() { return lblUser; } public void setLblUser(StaticText st) { this.lblUser = st; } private StaticText staticText2 = new StaticText(); public StaticText getStaticText2() { return staticText2; } public void setStaticText2(StaticText st) { this.staticText2 = st; } private Hyperlink lnkChangePassword = new Hyperlink(); public Hyperlink getLnkChangePassword() { return lnkChangePassword; } public void setLnkChangePassword(Hyperlink h) { this.lnkChangePassword = h; } private StaticText staticText3 = new StaticText(); public StaticText getStaticText3() { return staticText3; } public void setStaticText3(StaticText st) { this.staticText3 = st; } private Hyperlink lnkLogout = new Hyperlink(); public Hyperlink getLnkLogout() { return lnkLogout; } public void setLnkLogout(Hyperlink h) { this.lnkLogout = h; } //Callback method that is called whenever a page containing * this page fragment is navigated to, either directly via a URL, * or indirectly via page navigation. Override this method to acquire * resources that will be needed for event handlers and lifecycle methods.
* *The default implementation does nothing.
*/ public void init() { // Perform initializations inherited from our superclass super.init(); // Perform application initialization that must complete // *before* managed components are initialized // TODO - add your own initialiation code here //Callback method that is called after rendering is completed for
* this request, if init() was called. Override this
* method to release resources acquired in the init()
* resources that will be needed for event handlers and lifecycle methods.
The default implementation does nothing.
*/ public void destroy() { } /** *Return a reference to the scoped data bean.
*/ protected ApplicationBean1 getApplicationBean1() { return (ApplicationBean1)getBean("ApplicationBean1"); } /** *Return a reference to the scoped data bean.
*/ protected RequestBean1 getRequestBean1() { return (RequestBean1)getBean("RequestBean1"); } /** *Return a reference to the scoped data bean.
*/ protected SessionBean1 getSessionBean1() { return (SessionBean1)getBean("SessionBean1"); } }