Searched refs:Reference (Results 1 - 25 of 120) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/naming/
H A DReferenceable.java30 * Reference to itself.
32 * A Reference represents a way of recording address information about
35 * for programs that use that object to determine what its Reference is.
38 * get its Reference to use for binding.
46 * @see Reference
51 * Retrieves the Reference of this object.
53 * @return The non-null Reference of this object.
57 Reference getReference() throws NamingException;
H A DReference.java35 * Reference provides a way of recording address information about
38 * A Reference consists of an ordered list of addresses and class information
53 * A Reference also contains information to assist in creating an instance
54 * of the object to which this Reference refers. It contains the class name
62 * A Reference instance is not synchronized against concurrent access by multiple
63 * threads. Threads that need to access a single Reference concurrently should
76 * The serialized form of a Reference object consists of the class
83 public class Reference implements Cloneable, java.io.Serializable { class in inherits:Cloneable,java.io.Serializable
86 * this Reference refers.
92 * Contains the addresses contained in this Reference
121 public Reference(String className) { method in class:Reference
135 public Reference(String className, RefAddr addr) { method in class:Reference
154 public Reference(String className, String factory, String factoryLocation) { method in class:Reference
174 public Reference(String className, RefAddr addr, method in class:Reference
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java45 * @see Reference
57 * @throws IllegalAccessException if the <code>Reference</code> is not an
60 public void add(Reference reference);
67 public void remove(Reference reference);
85 * Returns an <code>Iterator</code> over all the <code>Reference</code>s
98 public Reference newDataReference(String uri);
106 public Reference newKeyReference(String uri);
H A DReference.java46 public interface Reference { interface
69 * this <code>Reference</code> that will aid the recipient in retrieving the
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DReferenceWrapper.java36 * The ReferenceWrapper class is a Remote wrapper for Reference
37 * objects. It wraps around a Reference on the server, and makes the
38 * Reference accessible to clients.
48 protected Reference wrappee; // reference being wrapped
50 public ReferenceWrapper(Reference wrappee)
56 public Reference getReference() throws RemoteException {
H A DRemoteReference.java35 * The RemoteReference interface wraps a Reference in a Remote wrapper.
43 Reference getReference() throws NamingException, RemoteException;
H A DRegistryContextFactory.java90 Object obj = URLsToObject(getURLs((Reference)ref), env);
93 ctx.reference = (Reference)ref;
138 if (!(obj instanceof Reference)) {
142 Reference ref = (Reference)obj;
150 private static String[] getURLs(Reference ref) throws NamingException {
167 "Reference contains no valid addresses"));
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DMissingResourceFailureException.java30 * {@link com.sun.org.apache.xml.internal.security.signature.Reference}s.
42 Reference uninitializedReference = null;
50 public MissingResourceFailureException(String _msgID, Reference reference) {
66 Reference reference) {
83 Reference reference) {
101 Reference reference) {
109 * used to set the uninitialized {@link com.sun.org.apache.xml.internal.security.signature.Reference}
111 * @param reference the Reference object
114 public void setReference(Reference reference) {
119 * used to get the uninitialized {@link com.sun.org.apache.xml.internal.security.signature.Reference}
[all...]
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReferenceQueue.java29 * Reference queues, to which registered reference objects are appended by the
44 boolean enqueue(Reference r) {
54 private volatile Reference<? extends T> head = null;
57 boolean enqueue(Reference<? extends T> r) { /* Called only by Reference class */
74 private Reference<? extends T> reallyPoll() { /* Must hold lock */
76 Reference<? extends T> r = head;
97 public Reference<? extends T> poll() {
125 public Reference<? extends T> remove(long timeout)
132 Reference<
[all...]
H A DFinalReference.java31 class FinalReference<T> extends Reference<T> {
H A DPhantomReference.java53 public class PhantomReference<T> extends Reference<T> {
H A DWeakReference.java48 public class WeakReference<T> extends Reference<T> {
H A DReference.java41 public abstract class Reference<T> { class
43 /* A Reference instance is in one of four possible internal states:
51 * pending-Reference list. Newly-created instances are Active.
53 * Pending: An element of the pending-Reference list, waiting to be
54 * enqueued by the Reference-handler thread. Unregistered instances
80 * to determine whether a Reference instance requires special treatment: If
84 * To ensure that concurrent collector can discover active Reference
94 Reference next;
95 transient private Reference<T> discovered; /* used by VM */
108 * References to this list, while the Reference
229 Reference(T referent) { method in class:Reference
233 Reference(T referent, ReferenceQueue<? super T> queue) { method in class:Reference
[all...]
H A DSoftReference.java64 public class SoftReference<T> extends Reference<T> {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/
H A DReference.java37 * Reference to a JAXB type (from JAX-RPC.)
51 public final class Reference { class
66 public Reference(MethodDeclaration method) { method in class:Reference
74 public Reference(ParameterDeclaration param) { method in class:Reference
81 public Reference(TypeDeclaration type,AnnotationProcessorEnvironment env) { method in class:Reference
88 public Reference(TypeMirror type, Declaration annotations) { method in class:Reference
105 if (!(o instanceof Reference)) return false;
107 final Reference that = (Reference) o;
H A DJavaCompiler.java61 * the XML types mapped from the corresponding {@link Reference}s.
62 * Those {@link Reference}s must be included in the <tt>rootTypes</tt> parameter.
63 * In this map, a {@link Reference} can be null, in which case the element name is
79 Collection<Reference> rootTypes,
80 Map<QName, Reference> additionalElementDecls,
H A DJ2SJAXBModel.java46 * must not be null. This must be one of the {@link Reference}s specified
55 QName getXmlTypeName(Reference javaType);
/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DWeakCache.java27 import java.lang.ref.Reference;
45 private final Map<K, Reference<V>> map = new WeakHashMap<K, Reference<V>>();
55 Reference<V> reference = this.map.get(key);
/openjdk7/jdk/test/javax/naming/RefAddr/
H A DNullContent.java37 Reference ref = new Reference("com.sun.test.Class", addr1);
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeanDescriptor.java28 import java.lang.ref.Reference;
40 private Reference<Class> beanClassRef;
41 private Reference<Class> customizerClassRef;
/openjdk7/jdk/test/javax/naming/spi/DirectoryManager/
H A DGetContDirCtx.java45 Reference ref = new Reference("java.lang.Object",
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DWeakClassHashMap.java27 import java.lang.ref.Reference;
84 Reference<T> ref = null;
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DReference.java26 * $Id: Reference.java,v 1.9 2005/05/10 16:03:46 mullan Exp $
37 * A representation of the <code>Reference</code> element as defined in the
42 * &lt;element name="Reference" type="ds:ReferenceType"/&gt;
60 * <p>A <code>Reference</code> instance may be created by invoking one of the
66 * Reference ref = factory.newReference
78 public interface Reference extends URIReference, XMLStructure { interface in inherits:URIReference,XMLStructure
83 * <code>Reference</code>.
91 * Returns the digest method of this <code>Reference</code>.
99 * <code>Reference</code>, which permits this reference to be
108 * Returns the digest value of this <code>Reference</cod
[all...]
/openjdk7/jdk/test/java/lang/ref/
H A DEnqueueNullRef.java34 static void test(ReferenceQueue q, Reference r) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/j2s/
H A DJAXBModelImpl.java49 import com.sun.tools.internal.xjc.api.Reference;
68 private final Map<QName,Reference> additionalElementDecls;
82 * Look up table from an externally visible {@link Reference} object
85 private final Map<Reference,NonElement<TypeMirror,TypeDeclaration>> refMap =
86 new HashMap<Reference, NonElement<TypeMirror,TypeDeclaration>>();
90 Collection<Reference> rootClasses,
91 Map<QName, Reference> additionalElementDecls) {
115 for (Reference ref : rootClasses)
120 Iterator<Map.Entry<QName, Reference>> itr = additionalElementDecls.entrySet().iterator();
122 Map.Entry<QName, Reference> entr
[all...]

Completed in 58 milliseconds

12345