1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.xmlhammer.gui.preferences;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import javax.swing.JFrame;
28 import javax.swing.table.DefaultTableModel;
29
30 import org.xmlhammer.model.jaxp.Property;
31
32 /***
33 * This PrefixNamespaceMappingPanel is used to ...
34 *
35 * @version $Revision: 1.12 $, $Date: 2007/06/19 19:29:03 $
36 * @author Edwin Dankert <edankert@gmail.com>
37 */
38 public class PropertiesPanel extends PreferencesTablePanel {
39 private static final long serialVersionUID = 3403969820780811484L;
40
41 public PropertiesPanel(JFrame parent, String name, String helpID) {
42 this( parent, name, helpID, false);
43 }
44
45 public PropertiesPanel(JFrame parent, String name, String helpID, boolean project) {
46 super( parent, name, helpID, project);
47 }
48
49 protected DefaultTableModel getModel() {
50 if ( model == null) {
51 model = new ActivatableTableModel();
52 model.setColumnCount(3);
53 model.setColumnIdentifiers( new String[] {" ", "Name", "Value"});
54 }
55
56 return model;
57 }
58
59 protected Object[] getDefaultRowContent() {
60 return new Object[] {Boolean.TRUE, "New Property Name", "New Property Value"};
61 }
62
63 protected int[] getColumnWidths() {
64 return new int[] {25, 500, 500};
65 }
66
67 public void setProperties( List<Property> properties) {
68 while (getModel().getRowCount() > 0) {
69 getModel().removeRow(0);
70 }
71
72 for (int i = 0; i < properties.size(); i++) {
73 Property property = properties.get(i);
74
75 getModel().addRow(new Object[] {property.isActive(), property.getName(), property.getValue()});
76 }
77 }
78
79 public List<Property> getProperties() {
80 List<Property> properties = new ArrayList<Property>();
81
82 for ( int i = 0; i < getModel().getRowCount(); i++) {
83 Property property = new Property();
84 property.setActive((Boolean)getModel().getValueAt(i, 0));
85 property.setName((String)getModel().getValueAt(i, 1));
86 property.setValue((String)getModel().getValueAt(i, 2));
87
88 properties.add( property);
89 }
90
91 return properties;
92 }
93
94 @Override
95 protected String getName(int row) {
96 return getModel().getValueAt(row, 1).toString();
97 }
98 }