01: package sisc.io.custom;
02:
03: import sisc.data.Pair;
04: import sisc.data.Value;
05:
06: public interface CustomPortProxy {
07:
08: public Pair getProcs();
09:
10: public void setHost(Value host);
11:
12: public Value getHost();
13: }
14: /*
15: * The contents of this file are subject to the Mozilla Public
16: * License Version 1.1 (the "License"); you may not use this file
17: * except in compliance with the License. You may obtain a copy of
18: * the License at http://www.mozilla.org/MPL/
19: *
20: * Software distributed under the License is distributed on an "AS
21: * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
22: * implied. See the License for the specific language governing
23: * rights and limitations under the License.
24: *
25: * The Original Code is the Second Interpreter of Scheme Code (SISC).
26: *
27: * The Initial Developer of the Original Code is Scott G. Miller.
28: * Portions created by Scott G. Miller are Copyright (C) 2000-2007
29: * Scott G. Miller. All Rights Reserved.
30: *
31: * Contributor(s):
32: * Matthias Radestock
33: *
34: * Alternatively, the contents of this file may be used under the
35: * terms of the GNU General Public License Version 2 or later (the
36: * "GPL"), in which case the provisions of the GPL are applicable
37: * instead of those above. If you wish to allow use of your
38: * version of this file only under the terms of the GPL and not to
39: * allow others to use your version of this file under the MPL,
40: * indicate your decision by deleting the provisions above and
41: * replace them with the notice and other provisions required by
42: * the GPL. If you do not delete the provisions above, a recipient
43: * may use your version of this file under either the MPL or the
44: * GPL.
45: */
|