01: /*
02: * $Id: School.java,v 1.2 2002/09/16 08:05:02 jkl Exp $
03: *
04: * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
05: *
06: * Use is subject to license terms, as defined in
07: * Anvil Sofware License, Version 1.1. See LICENSE
08: * file, or http://njet.org/license-1.1.txt
09: */
10: package anvil.codec;
11:
12: import java.io.OutputStream;
13: import java.io.IOException;
14:
15: public interface School {
16:
17: public OutputStream createClassRoom(String name) throws IOException;
18:
19: }
|