Searched defs:add (Results 101 - 125 of 411) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralNames.java69 add(name);
80 public GeneralNames add(GeneralName name) { method in class:GeneralNames
84 names.add(name);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodSet.java81 public void add(MemberDefinition method) { method in class:MethodSet
84 throw new CompilerError("add()");
111 // We add the method to the appropriate list.
112 methodList.add(method);
151 // We add the method to the appropriate list.
152 methodList.add(method);
244 * immutable. Any calls to add() or addMeet() lead to
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLEventWriterImpl.java67 public void add(javax.xml.stream.XMLEventReader xMLEventReader) throws javax.xml.stream.XMLStreamException { method in class:XMLEventWriterImpl
70 add(xMLEventReader.nextEvent());
79 public void add(javax.xml.stream.events.XMLEvent xMLEvent) throws javax.xml.stream.XMLStreamException { method in class:XMLEventWriterImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DNVListImpl.java72 public NamedValue add(int flags) method in class:NVListImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java119 public void add(int index, Object element) method in class:FreezableList
124 delegate.add(index, element) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraphImpl.java56 public boolean add( Object obj ) // obj must be a Node method in class:GraphImpl
155 graph.add( child ) ;
175 result.add( node ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackValueCollection.java37 public void add(StackValue val) { list.add(val); } method in class:StackValueCollection
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashAttributeSet.java90 add(attr);
105 * @param attribute Attribute value to add to the set.
123 * @param attributes Array of attribute values to add to the set.
168 * @param attribute Attribute value to add to the set.
186 add (attribute);
198 * @param attributes Array of attribute values to add to the set. If
221 add (attributes[i]);
248 add (attribArray[i]);
298 * the <CODE>add()</CODE> operation.
300 public boolean add(Attribut method in class:HashAttributeSet
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSCredential.java299 * This routine adds the new credential element "in-place". To add the
301 * copy of this credential, then call its <code>add</code> method.<p>
332 * element should add to the credential. The value
349 public void add(GSSName name, int initLifetime, int acceptLifetime, method in interface:GSSCredential
/openjdk7/jdk/src/share/classes/sun/font/
H A DCreatedFontTracker.java92 public void add(File file) { method in class:CreatedFontTracker
93 TempFileDeletionHook.add(file);
142 static synchronized void add(File file) { method in class:CreatedFontTracker.TempFileDeletionHook
/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java94 static void add(int slot, boolean registerShutdownInProgress, Runnable hook) { method in class:Shutdown
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DFinalizer.java53 private void add() { method in class:Finalizer
85 add();
/openjdk7/jdk/src/share/classes/java/security/
H A DPermissions.java58 * <p>When the <code>add</code> method is called to add a Permission, the
62 * the PermissionCollection and add it to the Permissions object. If
117 * @param permission the Permission object to add.
125 public void add(Permission permission) { method in class:Permissions
128 "attempt to add a Permission to a readonly Permissions object");
134 pc.add(permission);
237 * It should be set to true when invoked from add().
329 pc.add(perm);
495 * @param permission the Permission object to add
498 public void add(Permission permission) { method in class:PermissionsHash
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractCollection.java38 * override this class's <tt>add</tt> method (which otherwise throws an
130 * list.add(e);
166 * list.add(e);
259 public boolean add(E e) { method in class:AbstractCollection
328 * <tt>UnsupportedOperationException</tt> unless <tt>add</tt> is
337 * @see #add(Object)
342 if (add(e))
H A DCollection.java67 * add an ineligible element throws an unchecked exception, typically
246 * collections will refuse to add <tt>null</tt> elements, and others will
251 * If a collection refuses to add a particular element for any reason
260 * @throws UnsupportedOperationException if the <tt>add</tt> operation
271 boolean add(E e); method in interface:Collection
340 * @see #add(Object)
H A DHashSet.java36 * (<tt>add</tt>, <tt>remove</tt>, <tt>contains</tt> and <tt>size</tt>),
216 public boolean add(E e) { method in class:HashSet
H A DSet.java36 * constructors and on the contracts of the <tt>add</tt>, <tt>equals</tt> and
55 * add an ineligible element throws an unchecked exception, typically
207 * elements; sets may refuse to add any particular element, including
209 * specification for {@link Collection#add Collection.add}.
216 * @throws UnsupportedOperationException if the <tt>add</tt> operation
225 boolean add(E e); method in interface:Set
295 * @see #add(Object)
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java48 * <li>Mutative operations (<tt>add</tt>, <tt>set</tt>, <tt>remove</tt>, etc.)
68 * public void addHandler(Handler h) { handlers.add(h); }
247 public boolean add(E e) { method in class:CopyOnWriteArraySet
277 * @see #add(Object)
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DPartiallyOrderedSet.java92 public boolean add(Object o) { method in class:PartiallyOrderedSet
183 zeroList.add(node);
204 zeroList.add(node);
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleList.java42 add(Role) method would then override add(E) in ArrayList<E>,
43 and our return value is void whereas ArrayList.add(E)'s is boolean.
125 * {@code RoleList} instance, a subsequent attempt to add
158 public void add(Role role) method in class:RoleList
165 super.add(role);
181 public void add(int index, method in class:RoleList
191 super.add(index, role);
276 * Override all of the methods from ArrayList<Object> that might add
282 public boolean add(Objec method in class:RoleList
291 public void add(int index, Object element) { method in class:RoleList
[all...]
H A DRoleUnresolvedList.java41 add(RoleUnresolved) method would then override add(E) in ArrayList<E>,
42 and our return value is void whereas ArrayList.add(E)'s is boolean.
125 * {@code RoleUnresolvedList} instance, a subsequent attempt to add
158 public void add(RoleUnresolved role) method in class:RoleUnresolvedList
165 super.add(role);
182 public void add(int index, method in class:RoleUnresolvedList
192 super.add(index, role);
273 * Override all of the methods from ArrayList<Object> that might add
279 public boolean add(Objec method in class:RoleUnresolvedList
288 public void add(int index, Object element) { method in class:RoleUnresolvedList
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DName.java197 * the components to add
214 * the components to add
216 * the index in this name at which to add the new
232 * the component to add
238 public Name add(String comp) throws InvalidNameException; method in interface:Name
247 * the component to add
249 * the index at which to add the new component.
258 public Name add(int posn, String comp) throws InvalidNameException; method in interface:Name
H A DReference.java273 * @param addr The non-null address to add.
275 public void add(RefAddr addr) { method in class:Reference
285 * @param addr The non-null address to add.
289 public void add(int posn, RefAddr addr) { method in class:Reference
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttribute.java151 * @param attrVal The new possibly null value to add. If null, null
155 boolean add(Object attrVal); method in interface:Attribute
256 * @see #add(int, java.lang.Object)
304 * @param ix The index in the ordered list of attribute values to add the new value.
306 * @param attrVal The possibly null attribute value to add; if null, null is
312 void add(int ix, Object attrVal); method in interface:Attribute
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java84 * Same behavior as add(Object o) in {@link java.util.List}.
88 private synchronized boolean add(ObjectName name, ClassLoader cl) { method in class:ClassLoaderRepositorySupport
91 l.add(new LoaderEntry(name, cl));
257 excluded.add(aloader);
284 add(null, loader);
295 add(name, loader);

Completed in 89 milliseconds

1234567891011>>