Searched defs:list (Results 1 - 20 of 20) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/smf/
H A DCheckBoxListPropertySynchronizer.java44 BasicSmfMutableProperty<Boolean> property, CheckBoxList list) {
46 super(property, list);
43 CheckBoxListPropertySynchronizer( BasicSmfMutableProperty<Boolean> property, CheckBoxList list) argument
H A DComboBoxListPropertySynchronizer.java44 BasicSmfMutableProperty<String> property, ComboBoxList list) {
46 super(property, list);
43 ComboBoxListPropertySynchronizer( BasicSmfMutableProperty<String> property, ComboBoxList list) argument
H A DNumberSpinnerListPropertySynchronizer.java45 BasicSmfMutableProperty<Integer> property, NumberSpinnerList list) {
47 super(property, list);
44 NumberSpinnerListPropertySynchronizer( BasicSmfMutableProperty<Integer> property, NumberSpinnerList list) argument
H A DTextFieldListPropertySynchronizer.java44 BasicSmfMutableProperty<String> property, TextFieldList list) {
46 super(property, list);
43 TextFieldListPropertySynchronizer( BasicSmfMutableProperty<String> property, TextFieldList list) argument
H A DComponentListPropertySynchronizer.java59 BasicSmfMutableProperty<T> property, L list) {
61 super(property, list);
62 list.addChangeListener(listener);
77 ComponentList<C> list = getObject();
78 int nComps = list.getComponentCount();
81 C comp = list.getListComponent(i);
89 ComponentList<C> list = getObject();
90 int nComps = list.getComponentCount();
95 list.add();
99 list
58 ComponentListPropertySynchronizer( BasicSmfMutableProperty<T> property, L list) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/sysmon/src/java/vpanels/app/sysmon/com/oracle/solaris/vp/panels/sysmon/client/swing/
H A DSysMonListPanel.java40 private static final String TITLE = Finder.getString("list.title");
46 private ExtList list; field in class:SysMonListPanel
55 list = new ExtList(model);
56 list.setScrollableTracksViewportWidth(true);
57 list.setVisibleRowCount(8);
58 list.setVisibleRowCountStatic(false);
59 list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
63 renderer.configureFor(list);
64 list.setCellRenderer(renderer);
66 ExtScrollPane scroll = new ExtScrollPane(list);
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/property/
H A DListModelPropertySynchronizer.java45 private JList list; field in class:ListModelPropertySynchronizer
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DListObjectsView.java45 private ManagedObjectList list; field in class:ListObjectsView
81 list = new ManagedObjectList(model, popupMenu, dmAction, iconView) {
91 list.setOpaque(true);
92 list.setFillsViewportHeight(true);
95 list.getSelectionModel().addListSelectionListener(
98 scroll = new ExtScrollPane(list);
114 return Finder.getString("objects.header.view.value.list");
124 int[] indexes = list.getSelectedIndices();
139 return list;
H A DControlBreadCrumbs.java61 List<Control> list = getElementAt(index);
62 final Control control = list.get(0);
63 String text = toString(list);
100 // Navigate to Navigable selected in list
170 final JList list = popup.getPopup().getList();
172 // Select the current Control in list when it is shown
185 list.setSelectedValue(fNextNav, true);
189 // Embolden the current Control in list
190 final ListCellRenderer renderer = list.getCellRenderer();
191 list
254 toString(List<Control> list) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DCollectionUtil.java45 public static <T> List<T> clone(List<T> list) { argument
46 List<T> clone = new ArrayList<T>(list.size());
47 clone.addAll(list);
H A DTextUtil.java212 public static String join(String delim, Object... list) { argument
215 for (int i = 0; i < list.length; i++) {
219 if (list[i] != null) {
220 buffer.append(list[i]);
227 public static String join(String delim, byte... list) { argument
228 Byte[] array = new Byte[list.length];
230 array[i] = list[i];
235 public static String join(String delim, char... list) { argument
236 Character[] array = new Character[list.length];
238 array[i] = list[
243 join(String delim, double... list) argument
251 join(String delim, float... list) argument
259 join(String delim, int... list) argument
267 join(String delim, long... list) argument
275 join(String delim, short... list) argument
283 join(String delim, Collection list) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DListSelectionSynchronizer.java162 * @param list
165 public static void syncSelection(final JTable table, JList list) { argument
167 ListSelectionModel lModel = list.getSelectionModel();
H A DListCellOverlay.java146 GUIUtil.propagate(e, list);
156 GUIUtil.propagate(e, list);
161 GUIUtil.propagate(e, list);
170 GUIUtil.propagate(e, list);
175 GUIUtil.propagate(e, list);
210 * The initial delay after hovering over the list before an overlay appears.
221 private JList list; field in class:ListCellOverlay
255 public ListCellOverlay(final JList list) { argument
256 this.list = list;
[all...]
H A DSimpleCellRenderer.java107 public Component getListCellRendererComponent(JList list, Object value, argument
110 return getCellRendererComponent(list, value, isSelected, hasFocus);
192 * @param list
196 public void configureFor(JList list) { argument
197 int orientation = list == null ? JList.VERTICAL :
198 list.getLayoutOrientation();
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/path/
H A DTokenComboBox.java108 public Component getListCellRendererComponent(JList list, Object value, argument
/solaris-userland-s11u3/components/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/
H A DAccessPolicyUtil.java94 * Return a list of non-emmpty strings.
100 public static List<String> cleanList(List<String> list) { argument
101 if (list == null)
104 List<String> nList = new ArrayList<String>(list.size());
105 for (String s : list) {
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/api/file/
H A DRemoteFile.java187 public String[] list() { method in class:RemoteFile
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DUserManagedObject.java459 public String listToString(List<String> list) { argument
462 if (list == null) {
466 if (list.size() > 0) {
467 str = list.get(0);
472 for (int i = 1; i < list.size(); i++) {
474 str = str.concat(list.get(i));
481 List<String> list = new ArrayList<String>();
485 list.add(s);
488 return (list);
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/
H A Ddsr.c71 * Build a list of disks attached to the system. if a previous list is passed
72 * in, delete that list before building the new list.
78 nms_t *list; local
98 * Build the list of devices connected to the system.
100 list = rummage_dev_dsk();
101 rummage_path_to_inst(list);
102 mk_list_of_disks(list, &rv);
103 t = list;
124 nms_t *list = (nms_t *)0; local
206 look_up_name(const char *nm, nms_t *list) argument
232 make_an_entry(char *lname, const char *shortnm, nms_t **list, int devtype) argument
288 rummage_path_to_inst(nms_t *list) argument
315 pline(char *ib, nms_t *list) argument
435 find_str(const char *inbuf, nms_t *list) argument
449 mk_list_of_disks(nms_t *list, disk_list_t **hd) argument
575 struct list_of_disks *list; local
[all...]
/solaris-userland-s11u3/components/libusb/ugen/src/
H A Dlibusbugen.c105 static void usb_add_device(usb_device_t **list, usb_device_t *dev);
106 static void usb_remove_device(usb_device_t **list, usb_device_t *dev);
107 static int usb_check_device_in_list(usb_device_t *list, usb_device_t *dev);
241 * from the list that are no longer there
261 /* is any of devices on the new list also on the old list? */
283 /* add all new_devices to the old_devices list */
294 usb_dprintf(DEBUG_DETAILED, "usb_devices list:\n");
2175 * adds dev to the beginning of the list
2178 usb_add_device(usb_device_t **list, usb_device_ argument
2195 usb_remove_device(usb_device_t **list, usb_device_t *dev) argument
2215 usb_check_device_in_list(usb_device_t *list, usb_device_t *dev) argument
[all...]

Completed in 49 milliseconds