]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/DbTools/src/org/tianocore/DbTools/DbTool.java
Added the DbTools that will update the FrameworkDatabase.db file based on what is...
[mirror_edk2.git] / Tools / Java / Source / DbTools / src / org / tianocore / DbTools / DbTool.java
1 // @file
2 // DbUpdate wrapper
3 //
4 // Copyright (c) 2006, Intel Corporation All rights reserved.
5 //
6 // This program and the accompanying materials are licensed and made
7 // available under the terms and conditions of the BSD License which
8 // accompanies this distribution. The full text of the license may
9 // be found at 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.DbTools;
16
17 public class DbTool {
18
19 public static void main(String[] args) {
20 if (new DbCmds().DbUpdateCmdLine(args) != 0)
21 System.exit(1);
22 System.exit(0);
23 }
24 }