X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Ffar%2FPackageQueryInterface.java;fp=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Ffar%2FPackageQueryInterface.java;h=0000000000000000000000000000000000000000;hp=e8644ebbf72c1200e570cded57a7f556cfeba37d;hb=feccee87a78e68d575dbdf44b34ca0cb5a21ea8d;hpb=214b0d1914b48d651b25e58f321ddb77a46903b8 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/PackageQueryInterface.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/PackageQueryInterface.java deleted file mode 100644 index e8644ebbf7..0000000000 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/PackageQueryInterface.java +++ /dev/null @@ -1,38 +0,0 @@ -/** @file - - Copyright (c) 2006, Intel Corporation - All rights reserved. This program and the accompanying materials - are licensed and made available under the terms and conditions of the BSD License - which accompanies this distribution. The full text of the license may be found at - http://opensource.org/licenses/bsd-license.php - - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - **/ - -package org.tianocore.frameworkwizard.far; - -import java.io.File; -import java.io.InputStream; -import java.util.List; - -import org.tianocore.frameworkwizard.packaging.PackageIdentification; - -public interface PackageQueryInterface { - - public PackageIdentification getPackageIdentification(File spdFile); - - public List getPackageMsaList(File spdFile); - - public List getPackageMsaList(InputStream spdInput); - - public List getPackageDependencies(File spdFile); - - public List getPackageDependencies(List msaFiles); - - public List getModuleDependencies(InputStream msaInput); - - public List getModuleDependencies(File msaFile); - -}