KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > tools > OPP > message > MessageWriter


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: $
8
package org.ozoneDB.tools.OPP.message;
9
10 import java.util.EventListener JavaDoc;
11
12 public interface MessageWriter extends EventListener JavaDoc {
13     void startGeneration(String JavaDoc object);
14
15     void error(String JavaDoc message);
16
17     void warning(String JavaDoc message);
18
19     void warning(String JavaDoc filename, int row, String JavaDoc message);
20
21     void info(String JavaDoc message);
22
23     void debug(String JavaDoc message);
24
25     void endGeneration();
26 }
27
Popular Tags