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

Java Import Package Reference
Compaq NonStop Pathway/iTS Web Client Programming Manual520270-001
6-80
Class Pic9V
Parameters
Method Constructor (Sign Leading or Trailing)
Syntax
public Pic9V (int numIntegerDigits,
int numFractionDigits,
int signFlag)
Description
This form is used to construct the following SCREEN COBOL types:
PIC S9(m)V9(n) COMP new Pic9V (m, n, Pic9V.COMP,
Pic9V.SIGNED)
PIC 9(m)V9(n) new Pic9V (m, n, Pic9V.DISPLAY,
Pic9V.UNSIGNED)
PIC S9(m)V9(n) new Pic9V (m, n, Pic9V.DISPLAY,
Pic9V.SIGNED)
numIntegerDigits
The number of digits in the integer portion of the
number; must be between 0 and 16, inclusive
numFractionDigits
The number of digits in the fractional portion of the
number; must be between 0 and 16, inclusive; the sum of
numIntegerDigits and numFractionDigits
must be between 1 and 16, inclusive
computational
Must be either Pic9V.COMP or Pic9V.DISPLAY
signed
Must be either Pic9V.SIGNED or Pic9V.UNSIGNED
SCREEN COBOL Type Java Type
PIC S9(m)V9(n) sign lead new Pic9V (m, n,
Pic9V.SIGNLEADING)
PIC S9(m)V9(n) sign trail new Pic9V (m, n,
Pic9V.SIGNTRAILING)
PIC S9(m)V9(n) sign lead
separate
new Pic9V (m, n,
Pic9V.SIGNLEADINGSEPARATE)
PIC S9(m)V9(n) sign trail
separate
new Pic9V (m, n,
Pic9V.SIGNTRAILINGSEPARATE)
SCREEN COBOL Type Java Type