01: package com.dwipal;
02:
03: /**
04: * <p>Title: </p>
05: * <p>Description: </p>
06: * <p>Copyright: Copyright (c) 2005</p>
07: * <p>Company: </p>
08: * @author not attributable
09: * @version 1.0
10: */
11:
12: public interface ISnmpLib {
13: public void setHost(String host);
14:
15: public String getHost();
16:
17: public void setPort(int port);
18:
19: public int getPort();
20:
21: }
|