01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: OPPRemote.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.tools.OPP;
10:
11: import java.io.*;
12: import java.lang.reflect.*;
13:
14: //import org.ozoneDB.*;
15:
16: public interface OPPRemote extends org.ozoneDB.OzoneRemote {
17:
18: public void makeHeader() throws Exception;
19:
20: public String signature(Method m);
21: }
|