Skip to content

Instantly share code, notes, and snippets.

@gastaldi
Last active December 25, 2015 14:49
Show Gist options
  • Select an option

  • Save gastaldi/6994199 to your computer and use it in GitHub Desktop.

Select an option

Save gastaldi/6994199 to your computer and use it in GitHub Desktop.
/**
* 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