1
2
3
4
5
6
7
8 package org.sirius.server.win32lib.controls.button;
9
10 public interface IButtonContract extends java.rmi.Remote {
11 public void click(java.lang.Integer hwnd) throws java.rmi.RemoteException;
12
13 public java.lang.Boolean isChecked(java.lang.Integer hwnd)
14 throws java.rmi.RemoteException;
15
16 public java.lang.Boolean isIntermediate(java.lang.Integer hwnd)
17 throws java.rmi.RemoteException;
18
19 public java.lang.Boolean isPressed(java.lang.Integer hwnd)
20 throws java.rmi.RemoteException;
21
22 public void setCheck(java.lang.Integer hwnd, java.lang.Boolean check)
23 throws java.rmi.RemoteException;
24 }