Last active
December 25, 2015 14:49
-
-
Save gastaldi/6994199 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Copyright 2013 Red Hat, Inc. and/or its affiliates. | |
| * | |
| * Licensed under the Eclipse Public License version 1.0, available at | |
| * http://www.eclipse.org/legal/epl-v10.html | |
| */ | |
| package org.jboss.forge.addon.ui.output; | |
| import java.io.PrintWriter; | |
| /** | |
| * Used when information must be shown to users | |
| * | |
| * @author <a href="ggastald@redhat.com">George Gastaldi</a> | |
| */ | |
| public interface UIOutput | |
| { | |
| /** | |
| * Returns the {@link PrintWriter} used to display information in the output stream. | |
| */ | |
| PrintWriter out(); | |
| /** | |
| * Returns the {@link PrintWriter} used to display information in the output stream. | |
| */ | |
| PrintWriter err(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment