01: /*
02: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
03: *
04: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
05: *
06: * The contents of this file are subject to the terms of either the GNU General
07: * Public License Version 2 only ("GPL") or the Common Development and Distribution
08: * License("CDDL") (collectively, the "License"). You may not use this file except in
09: * compliance with the License. You can obtain a copy of the License at
10: * http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
11: * License for the specific language governing permissions and limitations under the
12: * License. When distributing the software, include this License Header Notice in
13: * each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Sun
14: * designates this particular file as subject to the "Classpath" exception as
15: * provided by Sun in the GPL Version 2 section of the License file that
16: * accompanied this code. If applicable, add the following below the License Header,
17: * with the fields enclosed by brackets [] replaced by your own identifying
18: * information: "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Contributor(s):
21: *
22: * The Original Software is NetBeans. The Initial Developer of the Original Software
23: * is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All
24: * Rights Reserved.
25: *
26: * If you wish your version of this file to be governed by only the CDDL or only the
27: * GPL Version 2, indicate your decision by adding "[Contributor] elects to include
28: * this software in this distribution under the [CDDL or GPL Version 2] license." If
29: * you do not indicate a single choice of license, a recipient has the option to
30: * distribute your version of this file under either the CDDL, the GPL Version 2 or
31: * to extend the choice of license to its licensees as provided above. However, if
32: * you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then
33: * the option applies only if the new code is made subject to such option by the
34: * copyright holder.
35: */
36:
37: package org.netbeans.installer.wizard.components.actions;
38:
39: import org.netbeans.installer.product.Registry;
40: import org.netbeans.installer.utils.ErrorManager;
41: import org.netbeans.installer.utils.ResourceUtils;
42: import org.netbeans.installer.utils.StringUtils;
43: import org.netbeans.installer.utils.exceptions.FinalizationException;
44: import org.netbeans.installer.utils.progress.Progress;
45: import org.netbeans.installer.wizard.components.WizardAction;
46:
47: /**
48: *
49: * @author Kirill Sorokin
50: */
51: public class FinalizeRegistryAction extends WizardAction {
52: public FinalizeRegistryAction() {
53: setProperty(TITLE_PROPERTY, DEFAULT_TITLE);
54: setProperty(DESCRIPTION_PROPERTY, DEFAULT_DESCRIPTION);
55: setProperty(REGISTRY_FINALIZATION_FAILED_PROPERTY,
56: DEFAULT_REGISTRY_FINALIZATION_FAILED_MESSAGE);
57: }
58:
59: public void execute() {
60: try {
61: Registry.getInstance().finalizeRegistry(new Progress());
62: } catch (FinalizationException e) {
63: ErrorManager
64: .notifyError(
65: StringUtils
66: .format(getProperty(REGISTRY_FINALIZATION_FAILED_PROPERTY)),
67: e);
68: }
69: }
70:
71: public WizardActionUi getWizardUi() {
72: return null; // this action does not have a ui
73: }
74:
75: @Override
76: public boolean isCancelable() {
77: return false;
78: }
79:
80: /////////////////////////////////////////////////////////////////////////////////
81: // Constants
82: public static final String DEFAULT_TITLE = ResourceUtils.getString(
83: FinalizeRegistryAction.class, "FRA.title"); // NOI18N
84: public static final String DEFAULT_DESCRIPTION = ResourceUtils
85: .getString(FinalizeRegistryAction.class, "FRA.description"); // NOI18N
86: public static final String DEFAULT_REGISTRY_FINALIZATION_FAILED_MESSAGE = ResourceUtils
87: .getString(FinalizeRegistryAction.class,
88: "FRA.registry.finalization.failed"); // NOI18N
89: public static final String REGISTRY_FINALIZATION_FAILED_PROPERTY = "registry.finalization.failed"; // NOI18N
90: }
|