310311312313314315316317318319
private void selectMultiple(int selectedIndex) { COSArray indexArray = getSelectedOptions(); if (indexArray != null) { indexArray.clear(); indexArray.add(COSInteger.get(selectedIndex)); } } }
117118119120121122123124125126127
else { COSArray indexArray = (COSArray)getDictionary().getDictionaryObject( COSName.I ); if( indexArray != null ) { indexArray.clear(); indexArray.add( COSInteger.get( indexSelected ) ); } } }
150151152153154155156157158159160
else { COSArray indexArray = (COSArray) getDictionary().getDictionaryObject(COSName.I); if (indexArray != null) { indexArray.clear(); indexArray.add(COSInteger.get(indexSelected)); } } }
102103104105106107108109110111112
else { COSArray indexArray = (COSArray)getDictionary().getDictionaryObject( "I" ); if( indexArray != null ) { indexArray.clear(); indexArray.add( COSInteger.get( indexSelected ) ); } } }
101102103104105106107108109110111
else { COSArray indexArray = (COSArray)getDictionary().getDictionaryObject( "I" ); if( indexArray != null ) { indexArray.clear(); indexArray.add( new COSInteger( indexSelected ) ); } } }