]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/FarFileItem.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / FarFileItem.java
CommitLineData
5a24e806 1/** @file\r
2 \r
3 The file is used to save information of <FarFile> item.\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.far;\r
16\r
17public class FarFileItem {\r
18\r
19 private String relativeFilename;\r
20\r
21 private String md5Value;\r
22\r
23 private String defaultPath;\r
24\r
25 public FarFileItem(String relativeFilename, String md5Value) {\r
26 this.relativeFilename = relativeFilename;\r
27 this.md5Value = md5Value;\r
28 }\r
29\r
30 public String getMd5Value() {\r
31 return md5Value;\r
32 }\r
33\r
34 public String getRelativeFilename() {\r
35 return relativeFilename;\r
36 }\r
37\r
38 public void setMd5Value(String md5Value) {\r
39 this.md5Value = md5Value;\r
40 }\r
41\r
42 public void setRelativeFilename(String relativeFilename) {\r
43 this.relativeFilename = relativeFilename;\r
44 }\r
45\r
46 public String getDefaultPath() {\r
47 return defaultPath;\r
48 }\r
49\r
50 public void setDefaultPath(String defaultPath) {\r
51 this.defaultPath = defaultPath;\r
52 }\r
53\r
54}\r