X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fcommon%2FIdentifications%2FOpeningFileType.java;h=14890286caa218b3b3b6cfa8dfa229a29477d00a;hp=c75ee8d83502f061078527481a082ef898485228;hb=739c6b04fd86cb47de673b1038bea336a7f3499c;hpb=4033708d7a5f6bc2b0d308239a3a43275ba25dc5 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningFileType.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningFileType.java index c75ee8d835..14890286ca 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningFileType.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningFileType.java @@ -22,36 +22,22 @@ public class OpeningFileType { // // Define class members // - - private Identification id = null; - private boolean isSaved = true; private boolean isNew = false; + private boolean isOpen = false; + private TreePath treePath = null; public OpeningFileType() { } - public OpeningFileType(Identification identification) { - this.id = identification; - } - - public OpeningFileType(Identification identification, TreePath treePathValue) { - this.id = identification; + public OpeningFileType(TreePath treePathValue) { this.treePath = treePathValue; } - public Identification getId() { - return id; - } - - public void setId(Identification id) { - this.id = id; - } - public boolean isNew() { return isNew; } @@ -75,4 +61,12 @@ public class OpeningFileType { public void setTreePath(TreePath treePath) { this.treePath = treePath; } + + public boolean isOpen() { + return isOpen; + } + + public void setOpen(boolean isOpen) { + this.isOpen = isOpen; + } }