]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningFileType.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / Identifications / OpeningFileType.java
1 /** @file
2
3 The file is used to define common opening file type
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
16 package org.tianocore.frameworkwizard.common.Identifications;
17
18 import java.util.LinkedHashSet;
19 import java.util.Set;
20
21 import javax.swing.tree.TreePath;
22
23
24 public class OpeningFileType {
25 //
26 // Define class members
27 //
28 private boolean isSaved = true;
29
30 private boolean isNew = false;
31
32 private boolean isOpen = false;
33
34 private Set<TreePath> treePath = new LinkedHashSet<TreePath>();
35
36 public OpeningFileType() {
37
38 }
39
40 public boolean isNew() {
41 return isNew;
42 }
43
44 public void setNew(boolean isNew) {
45 this.isNew = isNew;
46 }
47
48 public boolean isSaved() {
49 return isSaved;
50 }
51
52 public void setSaved(boolean isSaved) {
53 this.isSaved = isSaved;
54 }
55
56 public boolean isOpen() {
57 return isOpen;
58 }
59
60 public void setOpen(boolean isOpen) {
61 this.isOpen = isOpen;
62 }
63
64 public Set<TreePath> getTreePath() {
65 return treePath;
66 }
67
68 public void setTreePath(Set<TreePath> treePath) {
69 this.treePath = treePath;
70 }
71 }