]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/MigrationTools/org/tianocore/migration/UI.java
Coding Style
[mirror_edk2.git] / Tools / Java / Source / MigrationTools / org / tianocore / migration / UI.java
CommitLineData
b0282412 1/** @file\r
2 \r
3 Copyright (c) 2006, Intel Corporation\r
4 All rights reserved. This program and the accompanying materials\r
5 are licensed and made available under the terms and conditions of the BSD License\r
6 which accompanies this distribution. The full text of the license may be found at\r
7 http://opensource.org/licenses/bsd-license.php\r
8 \r
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11 \r
12 **/\r
0dc8c589 13package org.tianocore.migration;\r
14\r
71f30e51 15import java.util.Set;\r
0dc8c589 16\r
17public interface UI {\r
71f30e51 18\r
19 public boolean yesOrNo(String question);\r
20\r
21 public void print(String message);\r
22\r
23 public void println(String message);\r
24\r
25 public void println(Set<String> hash);\r
26\r
27 public String choose(String message, Object[] choicelist);\r
28\r
29 public String getInput(String message);\r
30\r
31 public String getFilepath(String title, int mode); // necessary ?\r
0dc8c589 32}\r