001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package singlepagecrudform;
043:
044: import com.sun.rave.web.ui.appbase.AbstractApplicationBean;
045: import javax.faces.FacesException;
046:
047: /**
048: * <p>Application scope data bean for your application. Create properties
049: * here to represent cached data that should be made available to all users
050: * and pages in the application.</p>
051: *
052: * <p>An instance of this class will be created for you automatically,
053: * the first time your application evaluates a value binding expression
054: * or method binding expression that references a managed bean using
055: * this class.</p>
056: */
057: public class ApplicationBean1 extends AbstractApplicationBean {
058: // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
059: private int __placeholder;
060:
061: /**
062: * <p>Automatically managed component initialization. <strong>WARNING:</strong>
063: * This method is automatically generated, so any user-specified code inserted
064: * here is subject to being replaced.</p>
065: */
066: private void _init() throws Exception {
067: }
068:
069: // </editor-fold>
070:
071: /**
072: * <p>Construct a new application data bean instance.</p>
073: */
074: public ApplicationBean1() {
075: }
076:
077: /**
078: * <p>This method is called when this bean is initially added to
079: * application scope. Typically, this occurs as a result of evaluating
080: * a value binding or method binding expression, which utilizes the
081: * managed bean facility to instantiate this bean and store it into
082: * application scope.</p>
083: *
084: * <p>You may customize this method to initialize and cache application wide
085: * data values (such as the lists of valid options for dropdown list
086: * components), or to allocate resources that are required for the
087: * lifetime of the application.</p>
088: */
089: public void init() {
090: // Perform initializations inherited from our superclass
091: super .init();
092: // Perform application initialization that must complete
093: // *before* managed components are initialized
094: // TODO - add your own initialiation code here
095:
096: // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
097: // Initialize automatically managed components
098: // *Note* - this logic should NOT be modified
099: try {
100: _init();
101: } catch (Exception e) {
102: log("ApplicationBean1 Initialization Failure", e);
103: throw e instanceof FacesException ? (FacesException) e
104: : new FacesException(e);
105: }
106:
107: // </editor-fold>
108: // Perform application initialization that must complete
109: // *after* managed components are initialized
110: // TODO - add your own initialization code here
111: }
112:
113: /**
114: * <p>This method is called when this bean is removed from
115: * application scope. Typically, this occurs as a result of
116: * the application being shut down by its owning container.</p>
117: *
118: * <p>You may customize this method to clean up resources allocated
119: * during the execution of the <code>init()</code> method, or
120: * at any later time during the lifetime of the application.</p>
121: */
122: public void destroy() {
123: }
124:
125: /**
126: * <p>Return an appropriate character encoding based on the
127: * <code>Locale</code> defined for the current JavaServer Faces
128: * view. If no more suitable encoding can be found, return
129: * "UTF-8" as a general purpose default.</p>
130: *
131: * <p>The default implementation uses the implementation from
132: * our superclass, <code>AbstractApplicationBean</code>.</p>
133: */
134: public String getLocaleCharacterEncoding() {
135: return super.getLocaleCharacterEncoding();
136: }
137: }
|