~ubuntu-branches/ubuntu/quantal/xen-api/quantal

« back to all changes in this revision

Viewing changes to java/com/citrix/xenserver/console/ConsoleListener.java

  • Committer: Package Import Robot
  • Author(s): Jon Ludlam
  • Date: 2011-07-07 21:50:18 UTC
  • Revision ID: package-import@ubuntu.com-20110707215018-3t9ekbh7qy5y2b1p
Tags: upstream-1.3
ImportĀ upstreamĀ versionĀ 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005-2009 Citrix Systems, Inc.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or modify it
 
5
 * under the terms of version 2 of the GNU General Public License as published
 
6
 * by the Free Software Foundation, with the additional linking exception as
 
7
 * follows:
 
8
 * 
 
9
 *   Linking this library statically or dynamically with other modules is
 
10
 *   making a combined work based on this library. Thus, the terms and
 
11
 *   conditions of the GNU General Public License cover the whole combination.
 
12
 * 
 
13
 *   As a special exception, the copyright holders of this library give you
 
14
 *   permission to link this library with independent modules to produce an
 
15
 *   executable, regardless of the license terms of these independent modules,
 
16
 *   and to copy and distribute the resulting executable under terms of your
 
17
 *   choice, provided that you also meet, for each linked independent module,
 
18
 *   the terms and conditions of the license of that module. An independent
 
19
 *   module is a module which is not derived from or based on this library. If
 
20
 *   you modify this library, you may extend this exception to your version of
 
21
 *   the library, but you are not obligated to do so. If you do not wish to do
 
22
 *   so, delete this exception statement from your version.
 
23
 * 
 
24
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
25
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
26
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
27
 * more details.
 
28
 * 
 
29
 * You should have received a copy of the GNU General Public License along
 
30
 * with this program; if not, write to the Free Software Foundation, Inc., 51
 
31
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
32
 */
 
33
package com.citrix.xenserver.console;
 
34
 
 
35
public interface ConsoleListener {
 
36
    public void writeline(String line);
 
37
}