]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/LibraryClassId.java
1. Provide "Find" function for Ppi/Protocol/Guid/Pcd/LibraryClass.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / find / LibraryClassId.java
1 /** @file
2
3 The file is used to define Library Class Identification used by find function
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.common.find;
16
17 public class LibraryClassId {
18
19 private String name = null;
20
21 private String type = null;
22
23 private String producedModules = null;
24
25 private String consumedModules = null;
26
27 private String declaredBy = null;
28
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);
35 }
36
37 public String getConsumedModules() {
38 return consumedModules;
39 }
40
41 public void setConsumedModules(String consumedModules) {
42 this.consumedModules = consumedModules;
43 }
44
45 public String getName() {
46 return name;
47 }
48
49 public void setName(String name) {
50 this.name = name;
51 }
52
53 public String getProducedModules() {
54 return producedModules;
55 }
56
57 public void setProducedModules(String producedModules) {
58 this.producedModules = producedModules;
59 }
60
61 public String getType() {
62 return type;
63 }
64
65 public void setType(String type) {
66 this.type = type;
67 }
68
69 public String getDeclaredBy() {
70 return declaredBy;
71 }
72
73 public void setDeclaredBy(String declaredBy) {
74 this.declaredBy = declaredBy;
75 }
76 }