Pathway/iTS Web Client Programming Manual (H06.03+, J06.03+)

Table Of Contents
Java Import Package Reference
HP NonStop Pathway/iTS Web Client Programming Manual520270-003
6-18
Class ScreenField
Description
This method sets the initial attributes of a screen field. For example, the SCREEN
COBOL data description entry
screen-field-name
[AT]
line-spec
,
column-spec
PIC [IS]
character-string
PROTECTED, MDTON
has this Java equivalent:
screenfieldObject.setInitAttribute (ScreenField.ATTR_PROTECTED |
ScreenField.ATTR_MDTON)
Parameters
Method setLENGTH
Syntax
public void setLENGTH (int[] lengthArray)
Description
Equivalent to the LENGTH [MUST BE] field-characteristic clause. For example, the
SCREEN COBOL data description entry
screen-field-name
[AT]
line-spec
,
column-spec
PIC [IS]
character-string
LENGTH 6 THRU 8, 10
has this Java equivalent:
int[] lengthArray = {6,8,10,10};
screenfieldObject.setLENGTH (lengthArray);
attribute Represents the initial screen-field attributes to be set at run
time, constructed by bitwise ORing of the attribute literals to be
set