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