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:
042: package jemmyI18NWizard.wizardSupport;
043:
044: import org.netbeans.jemmy.operators.JTableOperator;
045:
046: import org.netbeans.test.oo.gui.jam.JamComboBox;
047: import org.netbeans.test.oo.gui.jam.Jemmy;
048: import org.netbeans.test.oo.gui.jello.JelloWizard;
049: import org.netbeans.test.oo.gui.jello.JelloBundle;
050: import org.netbeans.test.oo.gui.jello.JelloUtilities;
051:
052: import org.netbeans.modules.i18n.HardCodedString;
053: import org.netbeans.modules.i18n.I18nString;
054:
055: public class Page2 extends JelloWizard {
056:
057: protected JamComboBox sourceSelectionComboBox;
058: public JTableOperator foundStringTable;
059:
060: private static final String wizardBundle = "org.netbeans.modules.i18n.wizard.Bundle";
061:
062: public Page2() {
063: super (JelloUtilities.getForteFrame(), JelloBundle.getString(
064: wizardBundle, "LBL_WizardTitle"));
065: sourceSelectionComboBox = this .getJamComboBox(0);
066: foundStringTable = new JTableOperator(Jemmy.getOp(this ));
067: }
068:
069: public void clearTableSelection() {
070: foundStringTable.clearSelection();
071: }
072:
073: public String getColumnName(int index) {
074: return foundStringTable.getColumnName(index);
075: }
076:
077: private boolean isCellEditable(int rowIndex, int columnIndex) {
078: return foundStringTable.isCellEditable(rowIndex, columnIndex);
079: }
080:
081: public Object getCell(int rowIndex, int columnIndex) {
082: return foundStringTable.getValueAt(rowIndex, columnIndex);
083: }
084:
085: public void setCell(Object object, int rowIndex, int columnIndex) {
086: foundStringTable.setValueAt(object, rowIndex, columnIndex);
087: }
088:
089: public void selectRow(int index) {
090: foundStringTable.setRowSelectionInterval(index, index);
091: }
092:
093: public void selectRows(int index1, int index2) {
094: foundStringTable.setRowSelectionInterval(index1, index2);
095: }
096:
097: public int getSelectedRow() {
098: return foundStringTable.getSelectedRow();
099: }
100:
101: public int[] getSelectedRows() {
102: return foundStringTable.getSelectedRows();
103: }
104:
105: public int getSelectedColumn() {
106: return foundStringTable.getSelectedColumn();
107: }
108:
109: public void selectSource(int index) {
110: sourceSelectionComboBox.setSelectedItem(index);
111: }
112:
113: public void selectSource(String source) {
114: sourceSelectionComboBox.setSelectedItem(source);
115: }
116:
117: public String getSelectedSource() {
118: return sourceSelectionComboBox.getSelectedItem();
119: }
120:
121: public int getSelectedItemIndex() {
122: return sourceSelectionComboBox.getSelectedIndex();
123: }
124:
125: public String getHardcodedString(int rowIndex) {
126: HardCodedString hardcodedString = (HardCodedString) this
127: .getCell(rowIndex, 1);
128: return hardcodedString.getText();
129: }
130:
131: public String getKey(int rowIndex) {
132: I18nString string = (I18nString) this .getCell(rowIndex, 2);
133: return string.getKey();
134: }
135:
136: public String getValue(int rowIndex) {
137: I18nString string = (I18nString) this .getCell(rowIndex, 3);
138: return string.getValue();
139: }
140:
141: public boolean getEnabled(int rowIndex) {
142: Boolean enabled = (Boolean) this .getCell(rowIndex, 0);
143: return enabled.booleanValue();
144: }
145:
146: public String getComment(int rowIndex) {
147: I18nString string = (I18nString) this .getCell(rowIndex, 3);
148: return string.getComment();
149: }
150:
151: public void setKey(int rowIndex, String key) {
152: I18nString string = (I18nString) this .getCell(rowIndex, 2);
153: string.setKey(key);
154: }
155:
156: public void setValue(int rowIndex, String value) {
157: I18nString string = (I18nString) this .getCell(rowIndex, 2);
158: string.setValue(value);
159: }
160:
161: public void setEnabled(int rowIndex, boolean enabled) {
162: this .setCell(enabled ? Boolean.TRUE : Boolean.FALSE, rowIndex,
163: 0);
164: }
165:
166: public void setComment(int rowIndex, String comment) {
167: I18nString string = (I18nString) this .getCell(rowIndex, 3);
168: string.setComment(comment);
169: }
170:
171: /** Dummy here. */
172: protected void updatePanel(int panelIndex) {
173: }
174:
175: }
|