]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/CreateMdkPkg/src/org/tianocore/packaging/MdkPkg.java
74250cc4a62b77a97ba9f542e4a391c579b3cf94
[mirror_edk2.git] / Tools / Source / CreateMdkPkg / src / org / tianocore / packaging / MdkPkg.java
1 /** @file
2
3 The file is used to override FrameworkPkg to provides customized interfaces
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
16 package org.tianocore.packaging;
17
18 import java.io.IOException;
19
20 /**
21 The class is used to override FrameworkPkg to provides customized interfaces
22
23 @since CreateMdkPkg 1.0
24
25 **/
26 public class MdkPkg extends FrameworkPkg {
27
28 /**
29 Main class, reserved for test
30
31 @param args
32
33 **/
34 public static void main(String[] args) {
35 // TODO Auto-generated method stub
36
37 }
38
39 /**
40 This is the default constructor
41
42 @param strJarFile The jar file need be installed
43 @throws IOException
44
45 **/
46 public MdkPkg(String strJarFile) throws IOException {
47 this.setPkg(strJarFile);
48 this.setJarFile();
49 }
50
51 /* (non-Javadoc)
52 * @see org.tianocore.packaging.FrameworkPkg#pre_install()
53 *
54 * Override pre_install to do nothing
55 *
56 */
57 protected void pre_install() {
58 }
59 }