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-2006 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: package org.netbeans.modules.debugger.ui;
042:
043: import org.openide.awt.Mnemonics;
044: import org.openide.util.NbBundle;
045:
046: import javax.swing.*;
047: import javax.swing.border.EmptyBorder;
048: import javax.swing.border.CompoundBorder;
049: import java.util.*;
050: import java.awt.BorderLayout;
051:
052: /**
053: * A GUI panel for customizing a Watch.
054: *
055: * @author Maros Sandor
056: */
057: public class WatchPanel {
058:
059: private JPanel panel;
060: private JTextField textField;
061: private String expression;
062:
063: public WatchPanel(String expression) {
064: this .expression = expression;
065: }
066:
067: public JComponent getPanel() {
068: if (panel != null)
069: return panel;
070:
071: panel = new JPanel();
072: ResourceBundle bundle = NbBundle.getBundle(WatchPanel.class);
073:
074: panel.getAccessibleContext().setAccessibleDescription(
075: bundle.getString("ACSD_WatchPanel")); // NOI18N
076: JLabel textLabel = new JLabel();
077: Mnemonics.setLocalizedText(textLabel, bundle
078: .getString("CTL_Watch_Name")); // NOI18N
079: textLabel.setBorder(new EmptyBorder(0, 0, 0, 10));
080: panel.setLayout(new BorderLayout());
081: panel.setBorder(new EmptyBorder(11, 12, 1, 11));
082: panel.add("West", textLabel); // NOI18N
083: panel.add("Center", textField = new JTextField(25)); // NOI18N
084: textField.getAccessibleContext().setAccessibleDescription(
085: bundle.getString("ACSD_CTL_Watch_Name")); // NOI18N
086: textField.setBorder(new CompoundBorder(textField.getBorder(),
087: new EmptyBorder(2, 0, 2, 0)));
088: String t = Utils.getIdentifier();
089: if (t != null) {
090: textField.setText(t);
091: } else {
092: textField.setText(expression);
093: }
094: textField.selectAll();
095:
096: textLabel.setLabelFor(textField);
097: textField.requestFocus();
098: return panel;
099: }
100:
101: public String getExpression() {
102: return textField.getText().trim();
103: }
104: }
|