KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > ddloaders > multiview > SecurityRoleReferencesTableModel


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.j2ee.ddloaders.multiview;
21
22 import org.netbeans.modules.j2ee.dd.api.common.SecurityRoleRef;
23 import org.netbeans.modules.j2ee.dd.api.ejb.EntityAndSession;
24 import org.netbeans.modules.xml.multiview.XmlMultiViewDataSynchronizer;
25
26 /**
27  * @author pfiala
28  */

29 public class SecurityRoleReferencesTableModel extends InnerTableModel {
30
31     private EntityAndSession ejb;
32     private static final String JavaDoc[] COLUMN_NAMES = {Utils.getBundleMessage("LBL_ReferenceName"),
33                                                   Utils.getBundleMessage("LBL_LinkedRole"),
34                                                   Utils.getBundleMessage("LBL_Description")};
35     private static final int[] COLUMN_WIDTHS = new int[]{100, 150, 100};
36
37     public SecurityRoleReferencesTableModel(XmlMultiViewDataSynchronizer synchronizer, EntityAndSession ejb) {
38         super(synchronizer, COLUMN_NAMES, COLUMN_WIDTHS);
39         this.ejb = ejb;
40     }
41
42     public void setValueAt(Object JavaDoc value, int rowIndex, int columnIndex) {
43         SecurityRoleRef securityRoleRef = ejb.getSecurityRoleRef(rowIndex);
44         switch (columnIndex) {
45             case 0:
46                 securityRoleRef.setRoleName((String JavaDoc) value);
47                 break;
48             case 1:
49                 securityRoleRef.setRoleLink((String JavaDoc) value);
50                 break;
51             case 2:
52                 securityRoleRef.setDescription((String JavaDoc) value);
53                 break;
54         }
55         modelUpdatedFromUI();
56         fireTableCellUpdated(rowIndex, columnIndex);
57     }
58
59     public int getRowCount() {
60         return ejb.getSecurityRoleRef().length;
61     }
62
63     public Object JavaDoc getValueAt(int rowIndex, int columnIndex) {
64         SecurityRoleRef securityRoleRef = ejb.getSecurityRoleRef(rowIndex);
65         switch (columnIndex) {
66             case 0:
67                 return securityRoleRef.getRoleName();
68             case 1:
69                 return securityRoleRef.getRoleLink();
70             case 2:
71                 return securityRoleRef.getDefaultDescription();
72         }
73         return null;
74     }
75
76     public int addRow() {
77         SecurityRoleRef securityRoleRef = ejb.newSecurityRoleRef();
78         ejb.addSecurityRoleRef(securityRoleRef);
79         modelUpdatedFromUI();
80         return getRowCount() - 1;
81     }
82
83     public void removeRow(int row) {
84         ejb.removeSecurityRoleRef(ejb.getSecurityRoleRef(row));
85         modelUpdatedFromUI();
86     }
87 }
88
Popular Tags