View Javadoc

1   /**
2    * ISpinContract.java
3    *
4    * This file was auto-generated from WSDL
5    * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6    */
7   
8   package org.sirius.server.win32lib.controls.spin;
9   
10  public interface ISpinContract extends java.rmi.Remote {
11      public java.lang.Double getLowerBound(java.lang.Integer hwnd) throws java.rmi.RemoteException;
12      public java.lang.Double getPosition(java.lang.Integer hwnd) throws java.rmi.RemoteException;
13      public java.lang.Double getValue(java.lang.Integer hwnd) throws java.rmi.RemoteException;
14      public java.lang.Double getUpperBound(java.lang.Integer hwnd) throws java.rmi.RemoteException;
15      public void setPosition(java.lang.Integer hwnd, java.lang.Double pos) throws java.rmi.RemoteException;
16      public void setValue(java.lang.Integer hwnd, java.lang.Double pos) throws java.rmi.RemoteException;
17      public java.lang.Double getSmallStep(java.lang.Integer hwnd) throws java.rmi.RemoteException;
18      public java.lang.Double getLargeStep(java.lang.Integer hwnd) throws java.rmi.RemoteException;
19  }