]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/PackageQueryInterface.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / PackageQueryInterface.java
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13
14 package org.tianocore.frameworkwizard.far;
15
16 import java.io.File;
17 import java.io.InputStream;
18 import java.util.List;
19
20 import org.tianocore.frameworkwizard.packaging.PackageIdentification;
21
22 public interface PackageQueryInterface {
23
24 public PackageIdentification getPackageIdentification(File spdFile);
25
26 public List<File> getPackageMsaList(File spdFile);
27
28 public List<String> getPackageMsaList(InputStream spdInput);
29
30 public List<PackageIdentification> getPackageDependencies(File spdFile);
31
32 public List<PackageIdentification> getPackageDependencies(List<File> msaFiles);
33
34 public List<PackageIdentification> getModuleDependencies(InputStream msaInput);
35
36 public List<PackageIdentification> getModuleDependencies(File msaFile);
37
38 }