|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JagacyException | |
com.jagacy | |
com.jagacy.ui | |
com.jagacy.util |
Uses of JagacyException in com.jagacy |
Methods in com.jagacy that throw JagacyException | |
protected abstract UserInterface |
AbstractSession.createUi()
Creates a user interface. |
void |
AbstractSession.open()
Opens the session. |
protected boolean |
AbstractSession.logon()
This method is called by open and is meant to be overidden by inheriting classes. |
Location |
AbstractSession.createLocation(int row,
int column)
Creates a Location object. |
Location |
AbstractSession.createLocation(java.lang.String propertyPrefix)
Creates a location object. |
void |
AbstractSession.writeString(java.lang.String value)
Writes a string at the current cursor position. |
void |
AbstractSession.writeProperty(java.lang.String valueProperty)
Writes the contents of valueProperty at the current cursor position. |
void |
AbstractSession.writePosition(int row,
int column,
java.lang.String value)
Writes a string at the given coordinates. |
void |
AbstractSession.writePosition(Location location,
java.lang.String value)
Writes a string at the given location. |
void |
AbstractSession.writePosition(java.lang.String propertyPrefix)
Writes a string at the coordinates given by the properties. |
void |
AbstractSession.writePosition(java.lang.String propertyPrefix,
java.lang.String value)
Writes a string at the coordinates given by the properties. |
void |
AbstractSession.writeAfterLabel(java.lang.String label,
java.lang.String value)
Writes a string in the next unprotected field after a protected label. |
void |
AbstractSession.writeAfterLabel(java.lang.String propertyPrefix)
Writes a string in the next unprotected field after a protected label. |
void |
AbstractSession.writeAfterLabelProperty(java.lang.String labelProperty,
java.lang.String value)
Writes a string in the next unprotected field after a protected label. |
java.lang.String |
AbstractSession.readRow(int row)
Returns the row. |
java.lang.String[] |
AbstractSession.readScreen()
Returns the screen. |
char[] |
AbstractSession.readScreenText()
Returns the screen as character text. |
java.lang.String |
AbstractSession.read(int length)
Reads a string at the current cursor position. |
java.lang.String |
AbstractSession.read(java.lang.String lengthProperty)
Reads a string at the current cursor position. |
java.lang.String |
AbstractSession.readPosition(int row,
int column,
int length)
Reads a string at the given coordinates. |
java.lang.String |
AbstractSession.readPosition(Location location,
int length)
Reads a string at the given location. |
java.lang.String |
AbstractSession.readPosition(java.lang.String propertyPrefix)
Reads a string at the given coordinates. |
Key |
AbstractSession.writeKey(Key key)
Writes the given key. |
Key |
AbstractSession.writeKey(java.lang.String keyProperty)
Writes the given key. |
boolean |
AbstractSession.waitForChange(int timeout)
Waits for the screen to change and the keyboard to unlock. |
boolean |
AbstractSession.waitForChange(java.lang.String timeoutProperty)
Waits for the screen to change and the keyboard to unlock. |
boolean |
AbstractSession.waitForUnlock(int timeout)
Waits for the keyboard to unlock. |
boolean |
AbstractSession.waitForUnlock(java.lang.String timeoutProperty)
Waits for the keyboard to unlock. |
long |
AbstractSession.readAlarmCount()
Returns the number of times the alarm has sounded. |
boolean |
AbstractSession.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 |
AbstractSession.waitForPosition(Location location,
java.lang.String value,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given location. |
boolean |
AbstractSession.waitForPosition(java.lang.String propertyPrefix,
java.lang.String timeoutProperty)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
AbstractSession.waitForPosition(java.lang.String propertyPrefix,
int timeout)
Waits (in 100 millisecond intervals) for the value to appear at the given coordinates. |
boolean |
AbstractSession.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 |
AbstractSession.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. |
int[] |
AbstractSession.readCursor()
Deprecated. As of Jagacy 3270 1.2 / Jagacy VT 1.0, replaced by AbstractSession.readCursorLocation() |
Location |
AbstractSession.readCursorLocation()
Reads the cursor. |
void |
AbstractSession.writeCursor(int row,
int column)
Writes the cursor at the given coordinates. |
void |
AbstractSession.writeCursor(Location location)
Writes the cursor at the given location. |
void |
AbstractSession.writeCursor(java.lang.String propertyPrefix)
Writes the cursor at the given coordinates. |
int |
AbstractSession.getAttributeForPosition(int row,
int column)
Used internally. |
protected void |
AbstractSession.logoff()
This method is called by close and is meant to be overidden by inheriting classes. |
void |
AbstractSession.close()
Closes the session. |
protected UserInterface |
Session3270.createUi()
|
void |
Session3270.open(java.lang.String deviceName)
Opens the session. |
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. |
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. |
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.getPositionField(int position,
int[] offset,
int[] length)
Used internally. |
Constructors in com.jagacy that throw JagacyException | |
Session3270(java.lang.String name)
Creates a new session. |
|
Session3270(java.lang.String name,
java.lang.String host)
Creates a new session. |
|
Session3270(java.lang.String name,
java.lang.String host,
int port,
java.lang.String terminal)
Creates a new session. |
|
Session3270(java.lang.String name,
java.lang.String host,
java.lang.String terminal)
Creates a new session. |
|
Session3270(java.lang.String name,
java.lang.String host,
int port)
Creates a new session. |
Uses of JagacyException in com.jagacy.ui |
Methods in com.jagacy.ui that throw JagacyException | |
void |
UserInterface.update()
Notifies the UI that the screen has been updated. |
void |
UserInterface.checkLocked()
Notifies the UI to check if the screen is locked. |
protected abstract AbstractSession |
AbstractSwing.createSession(java.lang.String name)
Creates a Jagacy session. |
protected abstract AbstractPanel |
AbstractSwing.createPanel()
Creates a Jagacy JPanel. |
protected void |
AbstractSwing.init()
Initializes the GUI. |
void |
AbstractSwing.update()
|
protected short |
Panel3270.getFeature(int row,
int column)
|
protected AbstractSession |
Swing3270.createSession(java.lang.String name)
|
protected AbstractPanel |
Swing3270.createPanel()
|
protected abstract short |
AbstractPanel.getFeature(int row,
int column)
Returns the feature (use with FeatureHelper). |
void |
AbstractPanel.connect()
Connects to a session. |
Constructors in com.jagacy.ui that throw JagacyException | |
AbstractSwing(java.lang.String name)
Creates an AbstractSwing object. |
|
AbstractSwing(AbstractSession session)
Creates an AbstractSwing object. |
|
Swing3270(java.lang.String name)
Creates a Swing3270 object. |
|
Swing3270(Session3270 session)
Creates a Swing3270 object. |
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 |