]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/IDefaultTableModel.java
Fixed Enumeration ModuleType was suppose to be TOOL, not TOOLS.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / IDefaultTableModel.java
CommitLineData
92e29378 1/** @file\r
2 \r
3 The file is used to override DefaultTableModel to provides customized interfaces \r
4 \r
5 Copyright (c) 2006, Intel Corporation\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10 \r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13 \r
14 **/\r
15package org.tianocore.frameworkwizard.common;\r
16\r
17import javax.swing.table.DefaultTableModel;\r
18\r
19public class IDefaultTableModel extends DefaultTableModel {\r
20\r
21 ///\r
22 ///\r
23 ///\r
24 private static final long serialVersionUID = -1782544418084080185L;\r
25\r
26 public IDefaultTableModel() {\r
27 super();\r
28 }\r
29\r
30 /* (non-Javadoc)\r
31 * @see javax.swing.table.TableModel#isCellEditable(int, int)\r
32 *\r
33 */\r
34 public boolean isCellEditable(int rowIndex, int columnIndex) {\r
35 return false;\r
36 }\r
37}\r