]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/FarIdentification.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / FarIdentification.java
1 /** @file
2
3 The file is used to save information of Far item.
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.far;
16
17 public class FarIdentification {
18
19 private String guid;
20
21 private String md5Value;
22
23 private String path;
24
25 public FarIdentification(String guid, String md5Value, String path) {
26 this.guid = guid;
27 this.md5Value = md5Value;
28 this.path = path;
29 }
30
31 public String getGuid() {
32 return guid;
33 }
34
35 public void setGuid(String guid) {
36 this.guid = guid;
37 }
38
39 public String getMd5Value() {
40 return md5Value;
41 }
42
43 public void setMd5Value(String md5Value) {
44 this.md5Value = md5Value;
45 }
46
47 public String getPath() {
48 return path;
49 }
50
51 public void setPath(String path) {
52 this.path = path;
53 }
54
55 public String toString() {
56 return path + " [" + guid + "]";
57 }
58 }