forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.8 KiB
121 lines
3.8 KiB
/*
|
|
* Header.java
|
|
*
|
|
* Created on September 19, 2007, 10:14 AM
|
|
* Copyright lluis
|
|
*/
|
|
package analiseacidentestrabalho;
|
|
|
|
import com.sun.rave.web.ui.appbase.AbstractFragmentBean;
|
|
import com.sun.rave.web.ui.component.StaticText;
|
|
import javax.faces.FacesException;
|
|
import javax.faces.component.html.HtmlPanelGrid;
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
public class Header extends AbstractFragmentBean {
|
|
// <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
|
|
private int __placeholder;
|
|
|
|
/**
|
|
* <p>Automatically managed component initialization. <strong>WARNING:</strong>
|
|
* This method is automatically generated, so any user-specified code inserted
|
|
* here is subject to being replaced.</p>
|
|
*/
|
|
private void _init() throws Exception {
|
|
}
|
|
|
|
private HtmlPanelGrid gridPanel1 = new HtmlPanelGrid();
|
|
|
|
public HtmlPanelGrid getGridPanel1() {
|
|
return gridPanel1;
|
|
}
|
|
|
|
public void setGridPanel1(HtmlPanelGrid hpg) {
|
|
this.gridPanel1 = hpg;
|
|
}
|
|
|
|
private StaticText staticText1 = new StaticText();
|
|
|
|
public StaticText getStaticText1() {
|
|
return staticText1;
|
|
}
|
|
|
|
public void setStaticText1(StaticText st) {
|
|
this.staticText1 = st;
|
|
}
|
|
// </editor-fold>
|
|
|
|
public Header() {
|
|
}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
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
|
|
|
|
|
|
// <editor-fold defaultstate="collapsed" desc="Visual-Web-managed Component Initialization">
|
|
// Initialize automatically managed components
|
|
// *Note* - this logic should NOT be modified
|
|
try {
|
|
_init();
|
|
} catch (Exception e) {
|
|
log("Page1 Initialization Failure", e);
|
|
throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
|
|
}
|
|
|
|
// </editor-fold>
|
|
// Perform application initialization that must complete
|
|
// *after* managed components are initialized
|
|
// TODO - add your own initialization code here
|
|
}
|
|
|
|
/**
|
|
* <p>Callback method that is called after rendering is completed for
|
|
* this request, if <code>init()</code> was called. Override this
|
|
* method to release resources acquired in the <code>init()</code>
|
|
* resources that will be needed for event handlers and lifecycle methods.</p>
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
public void destroy() {
|
|
}
|
|
|
|
/**
|
|
* <p>Return a reference to the scoped data bean.</p>
|
|
*/
|
|
protected RequestBean1 getRequestBean1() {
|
|
return (RequestBean1)getBean("RequestBean1");
|
|
}
|
|
|
|
/**
|
|
* <p>Return a reference to the scoped data bean.</p>
|
|
*/
|
|
protected SessionBean1 getSessionBean1() {
|
|
return (SessionBean1)getBean("SessionBean1");
|
|
}
|
|
|
|
/**
|
|
* <p>Return a reference to the scoped data bean.</p>
|
|
*/
|
|
protected ApplicationBean1 getApplicationBean1() {
|
|
return (ApplicationBean1)getBean("ApplicationBean1");
|
|
}
|
|
}
|