|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JagacyException | |
com.jagacy | |
com.jagacy.util |
Uses of JagacyException in com.jagacy |
Methods in com.jagacy that throw JagacyException | |
void |
Session3270.open()
Opens the session. |
Location |
Session3270.createLocation(int row,
int column)
Creates a Location object. |
void |
Session3270.writeString(java.lang.String value)
Writes a string at the current cursor position. |
void |
Session3270.writeProperty(java.lang.String valueProperty)
Writes the contents of valueProperty at the current cursor position. |
void |
Session3270.writePosition(int row,
int column,
java.lang.String value)
Writes a string at the given coordinates. |
void |
Session3270.writePosition(Location location,
java.lang.String value)
Writes a string at the given location. |
void |
Session3270.writePosition(java.lang.String propertyPrefix)
Writes a string at the coordinates given by the properties. |
void |
Session3270.writePosition(java.lang.String propertyPrefix,
java.lang.String value)
Writes a string at the coordinates given by the properties. |
void |
Session3270.writeField(int field,
int offset,
java.lang.String value)
Writes a string at the given field and offset. |
void |
Session3270.writeField(java.lang.String propertyPrefix)
Writes a string at the field and offset given by the properties. |
void |
Session3270.writeField(java.lang.String propertyPrefix,
java.lang.String value)
Writes a string at the field and offset given by the properties. |
void |
Session3270.writeAfterLabel(java.lang.String label,
java.lang.String value)
Writes a string in the next unprotected field after a protected label. |
void |
Session3270.writeAfterLabel(java.lang.String propertyPrefix)
Writes a string in the next unprotected field after a protected label. |
void |
Session3270.writeAfterLabelProperty(java.lang.String labelProperty,
java.lang.String value)
Writes a string in the next unprotected field after a protected label. |
java.lang.String[] |
Session3270.readScreen()
Returns the screen. |
java.lang.String |
Session3270.read(int length)
Reads a string at the current cursor position. |
java.lang.String |
Session3270.read(java.lang.String lengthProperty)
Reads a string at the current cursor position. |
java.lang.String |
Session3270.readPosition(int row,
int column,
int length)
Reads a string at the given coordinates. |
java.lang.String |
Session3270.readPosition(Location location,
int length)
Reads a string at the given location. |
java.lang.String |
Session3270.readPosition(java.lang.String propertyPrefix)
Reads a string at the given coordinates. |
Field[] |
Session3270.readFields()
Returns an array of all the fields on the screen. |
java.lang.String |
Session3270.readField(int field,
int offset,
int length)
Reads a string at the given field and offset. |
java.lang.String |
Session3270.readField(java.lang.String propertyPrefix)
Reads a string at the given field and offset. |
int |
Session3270.readFieldLength(int field)
Returns the length of a field. |
int |
Session3270.readFieldLength(java.lang.String fieldProperty)
Returns the length of a field. |
void |
Session3270.writeKey(Key key)
Writes the given key. |
void |
Session3270.writeKey(java.lang.String keyProperty)
Writes the given key. |
boolean |
Session3270.waitForChange(int timeout)
Waits for the screen to change and the keyboard to unlock. |
boolean |
Session3270.waitForChange(java.lang.String timeoutProperty)
Waits for the screen to change and the keyboard to unlock. |
boolean |
Session3270.waitForUnlock(int timeout)
Waits for the keyboard to unlock. |
boolean |
Session3270.waitForUnlock(java.lang.String timeoutProperty)
Waits for the keyboard to unlock. |
long |
Session3270.readAlarmCount()
Returns the number of times the alarm has sounded. |
boolean |
Session3270.waitForPosition(int row,
int column,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
Session3270.waitForPosition(Location location,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given location. |
boolean |
Session3270.waitForPosition(java.lang.String propertyPrefix,
java.lang.String timeoutProperty)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
Session3270.waitForPosition(java.lang.String propertyPrefix,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
Session3270.waitForPosition(java.lang.String propertyPrefix,
java.lang.String value,
java.lang.String timeoutProperty)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
Session3270.waitForPosition(java.lang.String propertyPrefix,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
Session3270.waitForField(int field,
int offset,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given field and offset. |
boolean |
Session3270.waitForField(java.lang.String propertyPrefix,
java.lang.String timeoutProperty)
Waits (in 100 millisecond intervals) for the value to appear at the given field and offset. |
boolean |
Session3270.waitForField(java.lang.String propertyPrefix,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given field and offset. |
boolean |
Session3270.waitForField(java.lang.String propertyPrefix,
java.lang.String value,
java.lang.String timeoutProperty)
Waits (in 100 millisecond intervals) for the value to appear at the given field and offset. |
boolean |
Session3270.waitForField(java.lang.String propertyPrefix,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given field and offset. |
int[] |
Session3270.readCursor()
Deprecated. As of release 1.2, replaced by Session3270.readCursorLocation() |
Location |
Session3270.readCursorLocation()
Reads the cursor. |
void |
Session3270.writeCursor(int row,
int column)
Writes the cursor at the given coordinates. |
void |
Session3270.writeCursor(Location location)
Writes the cursor at the given location. |
void |
Session3270.writeCursor(java.lang.String propertyPrefix)
Writes the cursor at the given coordinates. |
int |
Session3270.getAttributeForPosition(int row,
int column)
Used internally. |
int |
Session3270.getPositionField(int position,
int[] offset,
int[] length)
Used internally. |
void |
Session3270.close()
Closes the session. |
Constructors in com.jagacy that throw JagacyException | |
Session3270(java.lang.String name)
Creates a new session. |
Uses of JagacyException in com.jagacy.util |
Methods in com.jagacy.util that throw JagacyException | |
java.lang.String |
JagacyProperties.get(java.lang.String key)
Retrieves a String value. |
int |
JagacyProperties.getCardinal(java.lang.String key)
Retrieves a cardinal number (0, 1, 2, 3, ...) |
int |
JagacyProperties.getTimeout(java.lang.String key)
Retrieves a timeout value. |
int |
JagacyProperties.getField(java.lang.String key)
Retrieves a field number. |
int |
JagacyProperties.getOffset(java.lang.String key)
Retrieves an offset. |
boolean |
JagacyProperties.getBoolean(java.lang.String key)
Retrieves a boolean value. |
Key |
JagacyProperties.getKey(java.lang.String key)
Retrieves a key. |
Constructors in com.jagacy.util that throw JagacyException | |
JagacyProperties(java.lang.String name)
Creates a JagacyProperties. |
|
Logger(JagacyProperties properties)
Creates a Logger. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |