1
2
3
4
5
6
7
8 package org.sirius.server.win32lib.controls.edit;
9
10 public interface IEditContract extends java.rmi.Remote {
11 public java.lang.String getSelectedText(java.lang.Integer hwnd)
12 throws java.rmi.RemoteException;
13
14 public java.lang.String getText(java.lang.Integer hwnd)
15 throws java.rmi.RemoteException;
16
17 public void setCursorPosition(java.lang.Integer hwnd,
18 java.lang.Integer col, java.lang.Integer row)
19 throws java.rmi.RemoteException;
20
21 public void setSelection(java.lang.Integer hwnd, java.lang.Integer scol,
22 java.lang.Integer srow, java.lang.Integer ecol,
23 java.lang.Integer erow) throws java.rmi.RemoteException;
24
25 public void setText(java.lang.Integer hwnd, java.lang.String text)
26 throws java.rmi.RemoteException;
27
28 public void typeText(java.lang.Integer hwnd, java.lang.String text)
29 throws java.rmi.RemoteException;
30 }