View Javadoc

1   /**
2    * ITabContract.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.tab;
9   
10  public interface ITabContract extends java.rmi.Remote {
11      public java.lang.String[] getItemNames(java.lang.Integer hwnd)
12              throws java.rmi.RemoteException;
13  
14      public java.lang.Integer getItemsCount(java.lang.Integer hwnd)
15              throws java.rmi.RemoteException;
16  
17      public java.lang.Integer getSelectedIndex(java.lang.Integer hwnd)
18              throws java.rmi.RemoteException;
19  
20      public java.lang.String getSelectedItem(java.lang.Integer hwnd)
21              throws java.rmi.RemoteException;
22  
23      public void selectByIndex(java.lang.Integer hwnd, java.lang.Integer index)
24              throws java.rmi.RemoteException;
25  
26      public void selectByName(java.lang.Integer hwnd, java.lang.String item)
27              throws java.rmi.RemoteException;
28  }