]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/FrameworkTasks/org/tianocore/framework/tasks/Database.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / FrameworkTasks / org / tianocore / framework / tasks / Database.java
CommitLineData
878ddf1f 1/** @file\r
2 Database class.\r
3\r
4 Database represents an exceplicity name list of database file. \r
5 \r
6 Copyright (c) 2006, Intel Corporation\r
7 All rights reserved. This program and the accompanying materials\r
8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11 \r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15 **/\r
16package org.tianocore.framework.tasks;\r
17\r
878ddf1f 18/**\r
878ddf1f 19 Database represents an exceplicity name list of database file. \r
878ddf1f 20**/\r
82810f3b 21public class Database extends NestElement {\r
878ddf1f 22 /**\r
82810f3b 23 Override NestElement.toString() to return a string with leading "-db"\r
878ddf1f 24 \r
82810f3b 25 @return String \r
878ddf1f 26 **/\r
27 public String toString() {\r
82810f3b 28 return super.toString(" -db ");\r
29 } \r
878ddf1f 30}