]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdProtocolDecls.java
1. Add scroll bars to Package Library Class Declarations editor.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / packaging / ui / SpdProtocolDecls.java
1 /** @file
2 Java class SpdProtocolDecls is GUI for create library definition elements of spd file.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 **/
13 package org.tianocore.frameworkwizard.packaging.ui;
14
15 import javax.swing.table.DefaultTableModel;
16 import javax.swing.table.TableModel;
17
18 import org.tianocore.PackageSurfaceAreaDocument;
19 import org.tianocore.frameworkwizard.common.Identifications.OpeningPackageType;
20
21 /**
22 GUI for create library definition elements of spd file.
23
24 @since PackageEditor 1.0
25 **/
26 public class SpdProtocolDecls extends SpdGuidDecls {
27
28 /**
29 *
30 */
31 private static final long serialVersionUID = 1L;
32 private SpdFileContents sfc = null;
33 private OpeningPackageType docConsole = null;
34
35 public SpdProtocolDecls() {
36 super();
37 // TODO Auto-generated constructor stub
38 }
39
40 public SpdProtocolDecls(PackageSurfaceAreaDocument.PackageSurfaceArea inPsa) {
41 this();
42 sfc = new SpdFileContents(inPsa);
43 init(sfc);
44 }
45
46 public SpdProtocolDecls(OpeningPackageType opt) {
47 this(opt.getXmlSpd());
48 docConsole = opt;
49 }
50
51 protected void initFrame() {
52
53 this.setTitle("Protocol Declarations");
54
55 }
56
57 protected void init(SpdFileContents sfc){
58 //
59 // initialize table using SpdFileContents object
60 //
61 DefaultTableModel model = getModel();
62 if (sfc.getSpdProtocolDeclarationCount() == 0) {
63 return ;
64 }
65 String[][] saa = new String[sfc.getSpdProtocolDeclarationCount()][7];
66 sfc.getSpdProtocolDeclarations(saa);
67 int i = 0;
68 while (i < saa.length) {
69 model.addRow(saa[i]);
70 i++;
71 }
72
73 }
74
75 protected void updateRow(int row, TableModel m){
76 String name = m.getValueAt(row, 0) + "";
77 String cName = m.getValueAt(row, 1) + "";
78 String guid = m.getValueAt(row, 2) + "";
79 String help = m.getValueAt(row, 3) + "";
80 String archList = null;
81 if (m.getValueAt(row, 4) != null) {
82 archList = m.getValueAt(row, 4).toString();
83 }
84 String modTypeList = null;
85 if (m.getValueAt(row, 5) != null) {
86 modTypeList = m.getValueAt(row, 5).toString();
87 }
88 String guidTypeList = null;
89 if (m.getValueAt(row, 6) != null) {
90 guidTypeList = m.getValueAt(row, 6).toString();
91 }
92 String[] rowData = {name, cName, guid, help};
93 if (!dataValidation(rowData)){
94 return;
95 }
96 docConsole.setSaved(false);
97 sfc.updateSpdProtocolDecl(row, name, cName, guid, help, archList, modTypeList, guidTypeList);
98 }
99
100 protected void addRow(String[] row) {
101 if (!dataValidation(row)){
102 return;
103 }
104 docConsole.setSaved(false);
105 sfc.genSpdProtocolDeclarations(row[0], row[1], row[2], row[3], stringToVector(row[4]), stringToVector(row[5]), stringToVector(row[6]));
106 }
107
108 protected void removeRow(int i){
109 sfc.removeSpdProtocolDeclaration(i);
110 docConsole.setSaved(false);
111 }
112
113 protected void clearAllRow(){
114 sfc.removeSpdProtocolDeclaration();
115 docConsole.setSaved(false);
116 }
117 }