]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/ManifestInterface.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / ManifestInterface.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.IOException;
18 import java.util.List;
19 import java.util.Set;
20
21 import org.apache.xmlbeans.XmlException;
22 import org.tianocore.frameworkwizard.packaging.PackageIdentification;
23 import org.tianocore.frameworkwizard.platform.PlatformIdentification;
24
25 public interface ManifestInterface {
26
27 public void createManifest(List<PackageIdentification> pkgList, List<PlatformIdentification> plfList,
28 Set<String> fileFilter) throws Exception;
29
30 public void setManifestFile(File manifestFile) throws Exception;
31
32 public List<PackageIdentification> getPackageList() throws Exception;
33
34 public List<PlatformIdentification> getPlatformList() throws Exception, IOException, XmlException;
35
36 public List<FarFileItem> getPackageContents(PackageIdentification packageId);
37
38 public String getPackageDefaultPath(PackageIdentification packageId);
39
40 }