Searched defs:list (Results 26 - 50 of 323) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/unit/util/list/
H A DAbstractList.java30 * @compile ../../util/list/AbstractList.java
31 * @run main util.list.AbstractList
34 package util.list;
H A DFromArray.java30 * @compile ../../util/list/FromArray.java
31 * @run main util.list.FromArray
34 package util.list;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionListObserver.java18 * notice, this list of conditions and the following disclaimer.
21 * notice, this list of conditions and the following disclaimer in
68 public void notify(InstructionList list); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/resolver/
H A DResolver.java43 java.util.Set list() ; method in interface:Resolver
/openjdk7/jdk/src/share/classes/javax/swing/
H A DListCellRenderer.java42 * public Component getListCellRendererComponent(JList<?> list,
54 * JList.DropLocation dropLocation = list.getDropLocation();
95 * of a list because the list cells do not have a fixed size, this method
99 * @param list The JList we're painting.
100 * @param value The value returned by list.getModel().getElementAt(index).
111 JList<? extends E> list,
110 getListCellRendererComponent( JList<? extends E> list, E value, int index, boolean isSelected, boolean cellHasFocus) argument
H A DSpinnerListModel.java48 * model's <code>value</code> or <code>list</code> properties changes.
61 private List list; field in class:SpinnerListModel
81 this.list = values;
101 this.list = Arrays.asList(values);
108 * The model's list will contain a single
119 * @return the value of the <code>list</code> property
123 return list;
128 * Changes the list that defines this sequence and resets the index
129 * of the models <code>value</code> to zero. Note that <code>list</code>
132 * This method fires a <code>ChangeEvent</code> if <code>list</cod
140 setList(List<?> list) argument
[all...]
/openjdk7/jdk/test/java/awt/Focus/FocusTraversalPolicy/
H A DInitialFTP_AWT.java35 List list = new List(); field in class:AWTFrame
40 list.add("one");
41 list.add("two");
42 list.add("three");
47 this.add(list);
H A DInitialFTP_Swing.java35 JList list = new JList(new String[] {"one", "two", "three"}); field in class:SwingFrame
43 this.add(list);
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestNew.java55 private List<String> list; field in class:TestNew
59 this.list = new ArrayList<String>();
61 this.list.add(message);
70 return (test.list == null)
71 ? this.list == null
72 : test.list.equals(this.list);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6505888.java42 List<Integer> list = new ArrayList<Integer>();
43 list.add(Integer.valueOf(26));
44 list.add(Integer.valueOf(10));
45 list.add(Integer.valueOf(74));
46 return new ListBean(list);
55 private List<Integer> list; field in class:Test6505888.ListBean
57 @ConstructorProperties("list")
58 public ListBean(List<Integer> list) { argument
59 this.list = new ArrayList<Integer>(list);
[all...]
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DReader.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
61 static void parseAddessList(String s, List<InetAddress> list) argument
66 list.add(InetAddress.getByName(sources[i]));
112 // join group and block addresses on the exclude list
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java37 private LinkedList list = new LinkedList(); field in class:BufferQueue
41 list.addLast(item);
46 return (ByteBufferWithInfo)list.removeFirst();
51 return list.size();
58 list.addFirst(item);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DDenseIntMapImpl.java37 private ArrayList list = new ArrayList() ; field in class:DenseIntMapImpl
53 if (key < list.size())
54 result = list.get( key ) ;
66 list.set( key, value ) ;
71 if (index >= list.size()) {
72 list.ensureCapacity( index + 1 ) ;
73 int max = list.size() ;
75 list.add( null ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DBootstrapResolverImpl.java145 public java.util.Set list() method in class:BootstrapResolverImpl
151 inStream = invoke( "list", null ) ;
H A DCompositeResolverImpl.java51 public java.util.Set list() method in class:CompositeResolverImpl
54 result.addAll( first.list() ) ;
55 result.addAll( second.list() ) ;
H A DFileResolverImpl.java68 public java.util.Set list() method in class:FileResolverImpl
H A DLocalResolverImpl.java43 public synchronized java.util.Set list() method in class:LocalResolverImpl
H A DORBDefaultInitRefResolverImpl.java65 public java.util.Set list() method in class:ORBDefaultInitRefResolverImpl
H A DORBInitRefResolverImpl.java61 public java.util.Set list() method in class:ORBInitRefResolverImpl
H A DSplitLocalResolverImpl.java55 public java.util.Set list() method in class:SplitLocalResolverImpl
57 return resolver.list() ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeStateList.java32 list = new ArrayList(size);
34 list.add(i, CellTypeState.makeBottom());
39 return list.size();
43 return (CellTypeState) list.get(i);
47 return new CellTypeStateList(list.subList(fromIndex, toIndex));
51 private List list; field in class:CellTypeStateList
52 private CellTypeStateList(List list) { argument
53 this.list = list;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathList.java33 list = new ArrayList();
37 return list.size();
41 return (LivenessPath) list.get(i);
45 list.add(path);
49 list.remove(path);
52 private ArrayList list; field in class:LivenessPathList
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCardTerminals.java65 * Returns an unmodifiable list of all available terminals.
67 * @return an unmodifiable list of all available terminals.
71 public List<CardTerminal> list() throws CardException { method in class:CardTerminals
72 return list(State.ALL);
76 * Returns an unmodifiable list of all terminals matching the specified
96 * @return an unmodifiable list of all terminals matching the specified
102 public abstract List<CardTerminal> list(State state) throws CardException; method in class:CardTerminals
118 for (CardTerminal terminal : list()) {
162 * {@link #list(CardTerminals.State) list(Stat
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DListUI.java43 * given location in the list's coordinate system. To determine if the
46 * This method returns {@code -1} if the list's model is empty.
48 * @param list the list
53 public abstract int locationToIndex(JList list, Point location); argument
58 * in the list's coordinate system.
61 * @param list the list
65 public abstract Point indexToLocation(JList list, int index); argument
69 * Returns the bounding rectangle, in the given list'
83 getCellBounds(JList list, int index1, int index2) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxRenderer.java91 JList list,
107 setBackground(list.getSelectionBackground());
108 setForeground(list.getSelectionForeground());
111 setBackground(list.getBackground());
112 setForeground(list.getForeground());
115 setFont(list.getFont());
90 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument

Completed in 74 milliseconds

1234567891011>>