Searched defs:remove (Results 76 - 100 of 366) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java65 * @param reference the reference to remove.
67 public void remove(Reference reference); method in interface:ReferenceList
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DSingleCertificateResolver.java95 * Method remove
98 public void remove() { method in class:SingleCertificateResolver.InternalIterator
100 "Can't remove keys from KeyStore");
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DBindingsBase.java47 public Object remove(Object key) { method in class:BindingsBase
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorListModel.java51 //### remove listeners on exit!
70 public void remove(String expr) { method in class:MonitorListModel
72 remove(index);
75 public void remove(int index) { method in class:MonitorListModel
76 monitors.remove(index);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadGroupIterator.java98 public void remove() { method in class:ThreadGroupIterator
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DEdge.java63 public void remove() { method in class:Edge
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DResponseContext.java125 public Object remove(Object key) { method in class:ResponseContext
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.cpp44 void* value = remove(key);
98 void GDIHashtable::List::remove(GDIHashtable* table) { function in class:GDIHashtable::List
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4498236.java91 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
92 new EventSetDescriptor(Test4498236.class, "$$$", type, names, "add", "remove")
94 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; getListenerMethod=public java.awt.event.KeyListener Test4498236.get(); addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
95 new EventSetDescriptor(Test4498236.class, "$$$", type, names, "add", "remove", "get")
97 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
98 new EventSetDescriptor("$$$", type, methods, Test4498236.class.getMethod("add", type), Test4498236.class.getMethod("remove", type))
100 test("[name=$$$; inDefaultEventSet; listenerType=interface java.awt.event.KeyListener; getListenerMethod=public java.awt.event.KeyListener Test4498236.get(); addListenerMethod=public void Test4498236.add(java.awt.event.KeyListener); removeListenerMethod=public void Test4498236.remove(java.awt.event.KeyListener)]",
101 new EventSetDescriptor("$$$", type, methods, Test4498236.class.getMethod("add", type), Test4498236.class.getMethod("remove", type), Test4498236.class.getMethod("get"))
140 remove(listener);
150 public void remove(KeyListene method in class:Test4498236
[all...]
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DEditableAtEndDocument.java62 public void remove(int offs, int len) throws BadLocationException { method in class:EditableAtEndDocument
77 super.remove(cutStart, cutEnd - cutStart);
91 super.remove(0, getLength());
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStringToStringTable.java133 * @param key String to remove from the table
135 public final void remove(String key) method in class:StringToStringTable
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEventReaderImpl.java92 public void remove(){ method in class:XMLEventReaderImpl
93 //remove of the event is not supported.
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DNVListImpl.java104 public void remove(int index) method in class:NVListImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerWriteCollect.java226 public void remove () method in class:BufferManagerWriteCollect.BufferManagerWriteCollectIterator
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java127 public Object remove(int index) method in class:FreezableList
132 return delegate.remove(index) ;
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashAttributeSet.java311 * <CODE>remove()</CODE> does nothing and returns <tt>false</tt>.
322 * support the <CODE>remove()</CODE> operation.
324 public boolean remove(Class<?> category) { method in class:HashAttributeSet
329 attrMap.remove(category) != null;
335 * <CODE>remove()</CODE> does nothing and returns <tt>false</tt>.
345 * support the <CODE>remove()</CODE> operation.
347 public boolean remove(Attribute attribute) { method in class:HashAttributeSet
350 attrMap.remove(attribute.getCategory()) != null;
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterStateReasons.java66 * PrinterStateReasons object and remove them again. However, like class
304 public void remove() { method in class:PrinterStateReasons.PrinterStateReasonSetIterator
/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleBindings.java197 public Object remove(Object key) { method in class:SimpleBindings
199 return map.remove(key);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DArrayTable.java202 public Object remove(Object key){ method in class:ArrayTable
220 // If so, remove it
235 value = ((Hashtable)table).remove(key);
H A DInputMap.java97 remove(keyStroke);
136 public void remove(KeyStroke key) { method in class:InputMap
138 arrayTable.remove(key);
H A DMultiUIDefaults.java161 public Object remove(Object key) method in class:MultiUIDefaults
166 Object v = tables[i].remove(key);
172 Object v = super.remove(key);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DLazyActionMap.java110 public void remove(Object key) { method in class:LazyActionMap
112 super.remove(key);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSubTreeData.java104 public void remove() { method in class:DOMSubTreeData.DelayedNodeIterator
/openjdk7/jdk/src/share/classes/sun/font/
H A DCreatedFontTracker.java100 public void remove(File file) { method in class:CreatedFontTracker
101 TempFileDeletionHook.remove(file);
114 // Add a shutdown hook to remove the temp file.
151 static synchronized void remove(File file) { method in class:CreatedFontTracker.TempFileDeletionHook
152 files.remove(file);
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DFinalizer.java63 private void remove() { method in class:Finalizer
96 remove();
189 Finalizer f = (Finalizer)queue.remove();

Completed in 46 milliseconds

1234567891011>>