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