1
2
3
4
5
6
7
8 package org.sirius.server.win32lib.controls.listbox;
9
10 public interface IListBoxContract extends java.rmi.Remote {
11 public void addSelectionByIndex(java.lang.Integer hwnd,
12 java.lang.Integer index) throws java.rmi.RemoteException;
13
14 public void addSelectionByName(java.lang.Integer hwnd, java.lang.String item)
15 throws java.rmi.RemoteException;
16
17 public void deselectAll(java.lang.Integer hwnd)
18 throws java.rmi.RemoteException;
19
20 public java.lang.String[] getItemNames(java.lang.Integer hwnd)
21 throws java.rmi.RemoteException;
22
23 public java.lang.Integer getItemsCount(java.lang.Integer hwnd)
24 throws java.rmi.RemoteException;
25
26 public java.lang.Integer getSelectedIndex(java.lang.Integer hwnd)
27 throws java.rmi.RemoteException;
28
29 public java.lang.String getSelectedItem(java.lang.Integer hwnd)
30 throws java.rmi.RemoteException;
31
32 public java.lang.String[] getSelectedItems(java.lang.Integer hwnd)
33 throws java.rmi.RemoteException;
34
35 public void removeSelectionByIndex(java.lang.Integer hwnd,
36 java.lang.Integer index) throws java.rmi.RemoteException;
37
38 public void removeSelectionByName(java.lang.Integer hwnd,
39 java.lang.String item) throws java.rmi.RemoteException;
40
41 public void selectAll(java.lang.Integer hwnd)
42 throws java.rmi.RemoteException;
43
44 public void selectByIndex(java.lang.Integer hwnd, java.lang.Integer index)
45 throws java.rmi.RemoteException;
46
47 public void selectByName(java.lang.Integer hwnd, java.lang.String item)
48 throws java.rmi.RemoteException;
49 }