]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/FarHeader.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / FarHeader.java
1 /** @file
2
3 The file is used to save <farPackage> information.
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 FarHeader {
18 //
19 // class member
20 //
21 private String farName;
22
23 private String guidValue;
24
25 private String version;
26
27 private String abstractStr;
28
29 private String description;
30
31 private String copyright;
32
33 private String license;
34
35 private String specification;
36
37 public String getAbstractStr() {
38 return abstractStr;
39 }
40
41 public void setAbstractStr(String abstractStr) {
42 this.abstractStr = abstractStr;
43 }
44
45 public String getCopyright() {
46 return copyright;
47 }
48
49 public void setCopyright(String copyright) {
50 this.copyright = copyright;
51 }
52
53 public String getDescription() {
54 return description;
55 }
56
57 public void setDescription(String description) {
58 this.description = description;
59 }
60
61 public String getFarName() {
62 return farName;
63 }
64
65 public void setFarName(String farName) {
66 this.farName = farName;
67 }
68
69 public String getGuidValue() {
70 return guidValue;
71 }
72
73 public void setGuidValue(String guidValue) {
74 this.guidValue = guidValue;
75 }
76
77 public String getLicense() {
78 return license;
79 }
80
81 public void setLicense(String license) {
82 this.license = license;
83 }
84
85 public String getSpecification() {
86 return specification;
87 }
88
89 public void setSpecification(String specification) {
90 this.specification = specification;
91 }
92
93 public String getVersion() {
94 return version;
95 }
96
97 public void setVersion(String version) {
98 this.version = version;
99 }
100 }