Searched defs:fileList (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/sun/awt/datatransfer/
H A DSuplementaryCharactersTransferTest.java139 ArrayList<String> fileList) throws IOException {
138 convertFileListToBytes( ArrayList<String> fileList) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDataTransferer.java198 protected ByteArrayOutputStream convertFileListToBytes(ArrayList<String> fileList) argument
202 for (int i = 0; i < fileList.size(); i++)
204 byte[] bytes = fileList.get(i).getBytes();
H A DXFileDialogPeer.java98 List fileList; field in class:XFileDialogPeer
171 fileList = new List();
177 fileList.setMultipleMode(isMultipleMode);
251 addComponent(fileList, gbl, gbc, 1, 5, 1,
295 fileList.addItemListener(this);
296 fileList.addActionListener(this);
377 if (fileList.getItemCount() != 0) {
378 fileList.requestFocus();
399 String[] fileNames = fileList.getSelectedItems();
423 fileList
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogManager.java535 public void setCatalogFiles(String fileList) { argument
536 catalogFiles = fileList;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java53 protected JList fileList = null; field in class:MotifFileChooserUI
191 fileList.clearSelection();
199 fileList.clearSelection();
200 sm = fileList.getSelectionModel();
223 fileList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
225 fileList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
226 fileList.clearSelection();
564 fileList = new JList();
567 fileList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
569 fileList
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDataTransferer.java279 protected ByteArrayOutputStream convertFileListToBytes(ArrayList<String> fileList) throws IOException { argument
281 for (int i = 0; i < fileList.size(); i++)
283 byte[] bytes = fileList.get(i).getBytes();
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDataTransferer.java380 protected ByteArrayOutputStream convertFileListToBytes(ArrayList<String> fileList) argument
385 if(fileList.isEmpty()) {
389 for (int i = 0; i < fileList.size(); i++) {
390 byte[] bytes = fileList.get(i).getBytes(getDefaultUnicodeEncoding());
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java1320 final ArrayList<String> fileList = castToFiles(list, userProtectionDomain);
1322 bos = convertFileListToBytes(fileList);
1345 final ArrayList<String> fileList = castToFiles(list, userProtectionDomain);
1346 final ArrayList<String> uriList = new ArrayList<String>(fileList.size());
1347 for (String fileObject : fileList) {
1411 protected abstract ByteArrayOutputStream convertFileListToBytes(ArrayList<String> fileList) throws IOException; argument
1483 final ArrayList<String> fileList = new ArrayList<String>();
1495 fileList.add(file.getCanonicalPath());
1504 return fileList;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKFileChooserUI.java92 private JList fileList; field in class:GTKFileChooserUI
157 directoryList : fileList;
280 fileList.clearSelection();
281 sm = fileList.getSelectionModel();
329 fileList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
331 fileList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
332 fileList.clearSelection();
625 fileListLabel.setLabelFor(fileList);
849 fileList = new JList();
850 fileList
[all...]

Completed in 66 milliseconds