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: /*
043: * ApplicationBean1.java
044: *
045: * Created on Aug 3, 2007, 11:02:02 AM
046: * by jb144761
047: */
048: package singlepagecrudtable;
049:
050: import com.sun.rave.web.ui.appbase.AbstractApplicationBean;
051: import javax.faces.FacesException;
052:
053: /**
054: * <p>Application scope data bean for your application. Create properties
055: * here to represent cached data that should be made available to all users
056: * and pages in the application.</p>
057: *
058: * <p>An instance of this class will be created for you automatically,
059: * the first time your application evaluates a value binding expression
060: * or method binding expression that references a managed bean using
061: * this class.</p>
062: */
063: public class ApplicationBean1 extends AbstractApplicationBean {
064: // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
065: private int __placeholder;
066:
067: /**
068: * <p>Automatically managed component initialization. <strong>WARNING:</strong>
069: * This method is automatically generated, so any user-specified code inserted
070: * here is subject to being replaced.</p>
071: */
072: private void _init() throws Exception {
073: }
074:
075: // </editor-fold>
076:
077: /**
078: * <p>Construct a new application data bean instance.</p>
079: */
080: public ApplicationBean1() {
081: }
082:
083: /**
084: * <p>This method is called when this bean is initially added to
085: * application scope. Typically, this occurs as a result of evaluating
086: * a value binding or method binding expression, which utilizes the
087: * managed bean facility to instantiate this bean and store it into
088: * application scope.</p>
089: *
090: * <p>You may customize this method to initialize and cache application wide
091: * data values (such as the lists of valid options for dropdown list
092: * components), or to allocate resources that are required for the
093: * lifetime of the application.</p>
094: */
095: public void init() {
096: // Perform initializations inherited from our superclass
097: super .init();
098: // Perform application initialization that must complete
099: // *before* managed components are initialized
100: // TODO - add your own initialiation code here
101:
102: // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
103: // Initialize automatically managed components
104: // *Note* - this logic should NOT be modified
105: try {
106: _init();
107: } catch (Exception e) {
108: log("ApplicationBean1 Initialization Failure", e);
109: throw e instanceof FacesException ? (FacesException) e
110: : new FacesException(e);
111: }
112:
113: // </editor-fold>
114: // Perform application initialization that must complete
115: // *after* managed components are initialized
116: // TODO - add your own initialization code here
117: }
118:
119: /**
120: * <p>This method is called when this bean is removed from
121: * application scope. Typically, this occurs as a result of
122: * the application being shut down by its owning container.</p>
123: *
124: * <p>You may customize this method to clean up resources allocated
125: * during the execution of the <code>init()</code> method, or
126: * at any later time during the lifetime of the application.</p>
127: */
128: public void destroy() {
129: }
130:
131: /**
132: * <p>Return an appropriate character encoding based on the
133: * <code>Locale</code> defined for the current JavaServer Faces
134: * view. If no more suitable encoding can be found, return
135: * "UTF-8" as a general purpose default.</p>
136: *
137: * <p>The default implementation uses the implementation from
138: * our superclass, <code>AbstractApplicationBean</code>.</p>
139: */
140: public String getLocaleCharacterEncoding() {
141: return super.getLocaleCharacterEncoding();
142: }
143: }
|