Pathway/iTS Web Client Programming Manual (G06.24+)

Java Import Package Reference
Compaq NonStop Pathway/iTS Web Client Programming Manual520270-001
6-37
Class FunctionKey
public void turn (ScreenFieldIdentifier[] fieldIds,
boolean isTemporary,
int attrFlag,
ScobolType dependingOn)
public void turn (ScreenFieldIdentifier[] fieldIds,
boolean isTemporary,
int attrFlag,
boolean isShadowed)
Description
The first form of the syntax is equivalent to the SCREEN COBOL statement:
TURN [TEMP] {...} IN {screen-identifier},...
The second form is equivalent to the SCREEN COBOL statement:
TURN [TEMP] {...} IN {screen-identifier},... [DEPENDING [ON]]
identifier
The third form is equivalent to the SCREEN COBOL statement:
TURN [TEMP] {...} IN {screen-identifier},... [SHADOWED]
Parameters
Class FunctionKey
The FunctionKey class is the Java representation of the function keys in SCREEN
COBOL programs.
Package
pathway.its
Syntax
public pathway.its.FunctionKey
fieldIDs
An array of ScreenIdentifier objects; corresponds to
screen-identifiers in the TURN statement
isTemporary
If true, corresponds to the presence (and if false, to the
absence) of the TEMP clause of the TURN statement
attrFlag
If 0, implies the DYNAMIC clause of the TURN statement;
otherwise, the value is the ORed combination of attributes
from the DisplayAttribute class
dependingOn
If non-null, corresponds to the presence (and if null, to the
absence) of the DEPENDING [ON] clause of the TURN
statement
isShadowed
If true, corresponds to the presence (and if false, to the
absence) of the SHADOWED clause of the TURN statement