]>
git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/LibraryClassId.java
3 The file is used to define Library Class Identification used by find function
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
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.
15 package org
.tianocore
.frameworkwizard
.common
.find
;
17 public class LibraryClassId
{
19 private String name
= null;
21 private String type
= null;
23 private String producedModules
= null;
25 private String consumedModules
= null;
27 private String declaredBy
= null;
29 public LibraryClassId(String arg0
, String arg1
, String arg2
, String arg3
, String arg4
) {
30 this.name
= (arg0
== null ?
"" : arg0
);
31 this.type
= (arg1
== null ?
"" : arg1
);
32 this.producedModules
= (arg2
== null ?
"" : arg2
);
33 this.consumedModules
= (arg3
== null ?
"" : arg3
);
34 this.declaredBy
= (arg4
== null ?
"" : arg4
);
37 public String
getConsumedModules() {
38 return consumedModules
;
41 public void setConsumedModules(String consumedModules
) {
42 this.consumedModules
= consumedModules
;
45 public String
getName() {
49 public void setName(String name
) {
53 public String
getProducedModules() {
54 return producedModules
;
57 public void setProducedModules(String producedModules
) {
58 this.producedModules
= producedModules
;
61 public String
getType() {
65 public void setType(String type
) {
69 public String
getDeclaredBy() {
73 public void setDeclaredBy(String declaredBy
) {
74 this.declaredBy
= declaredBy
;