Searched defs:reference (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialRef.java54 * Private copy of the Ref reference.
56 private Ref reference; field in class:SerialRef
74 reference = ref;
104 * @return an object instance resolved from the Ref reference and mapped
106 * @throws SerialException if an error is encountered in the reference
124 * @return an object instance resolved from the Ref reference
125 * @throws SerialException if an error is encountered in the reference
130 if (reference != null) {
132 return reference.getObject();
158 reference
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DCipherData.java27 * <code>CipherValue</code> element, or provide a reference to an external
76 * Returns a reference to an external location containing the encrypted
79 * @return the reference to an external location containing the enctrypted
85 * Sets the <code>CipherData</code>'s reference.
87 * @param reference an external location containing the enctrypted octet
91 void setCipherReference(CipherReference reference) throws argument
H A DReferenceList.java54 * Adds a reference to this reference list.
56 * @param reference the reference to add.
60 public void add(Reference reference); argument
63 * Removes a reference from the <code>ReferenceList</code>.
65 * @param reference the reference to remove.
67 public void remove(Reference reference); argument
H A DXMLCipher.java1741 * @param uri The URI that the reference will refer
2909 "Data type is reference type.";
2946 public void setCipherReference(CipherReference reference) throws argument
2953 cipherReference = reference;
3672 * This is a same document URI reference. Do not parse,
3843 public void add(Reference reference) { argument
3844 if (!reference.getClass().equals(sentry)) {
3847 references.add(reference);
3850 public void remove(Reference reference) { argument
3851 if (!reference
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DMissingResourceFailureException.java47 * @param reference
50 public MissingResourceFailureException(String _msgID, Reference reference) { argument
54 this.uninitializedReference = reference;
62 * @param reference
66 Reference reference) {
70 this.uninitializedReference = reference;
78 * @param reference
83 Reference reference) {
87 this.uninitializedReference = reference;
96 * @param reference
65 MissingResourceFailureException(String _msgID, Object exArgs[], Reference reference) argument
81 MissingResourceFailureException(String _msgID, Exception _originalException, Reference reference) argument
99 MissingResourceFailureException(String _msgID, Object exArgs[], Exception _originalException, Reference reference) argument
114 setReference(Reference reference) argument
[all...]
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest5102804.java72 private static boolean isCollectible(Reference reference) { argument
79 return null == reference.get();
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java39 * An {@code AtomicMarkableReference} maintains an object reference
44 * [reference, boolean] pairs.
48 * @param <V> The type of object referred to by this reference
53 final T reference; field in class:AtomicMarkableReference.Pair
55 private Pair(T reference, boolean mark) { argument
56 this.reference = reference;
59 static <T> Pair<T> of(T reference, boolean mark) { argument
60 return new Pair<T>(reference, mark);
70 * @param initialRef the initial reference
[all...]
H A DAtomicStampedReference.java39 * An {@code AtomicStampedReference} maintains an object reference
44 * [reference, integer] pairs.
48 * @param <V> The type of object referred to by this reference
53 final T reference; field in class:AtomicStampedReference.Pair
55 private Pair(T reference, int stamp) { argument
56 this.reference = reference;
59 static <T> Pair<T> of(T reference, int stamp) { argument
60 return new Pair<T>(reference, stamp);
70 * @param initialRef the initial reference
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DFeatureDescriptor.java331 * Creates a new soft reference that refers to the given object.
333 * @return a new soft reference or <code>null</code> if object is <code>null</code>
344 * Creates a new weak reference that refers to the given object.
346 * @return a new weak reference or <code>null</code> if object is <code>null</code>
428 static void appendTo(StringBuilder sb, String name, Reference reference) { argument
429 if (reference != null) {
430 appendTo(sb, name, reference.get());
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java56 Reference reference = null; // ref used to create this context, if any field in class:RegistryContext
101 reference = ctx.reference;
309 * Returns an RMI registry reference for this context.
311 * If this context was created from a reference, that reference is
314 * possibly make for a valid reference, it's far more likely to be
320 if (reference != null) {
321 return (Reference)reference.clone(); // %%% clone the addrs too?
325 "Cannot create a reference fo
[all...]
/openjdk7/jdk/test/tools/pack200/
H A DUtils.java128 static void doCompareVerify(File reference, File specimen) throws IOException { argument
134 cmds.add(reference.getAbsolutePath());
140 static void doCompareBitWise(File reference, File specimen) argument
147 cmds.add(reference.getName());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAImpl.java492 org.omg.CORBA.Object reference ) throws WrongAdapter
494 IOR ior = ORBUtility.getIOR( reference ) ;
845 // CORBA 3.0 11.3.9.3, in reference to unknown_adapter)
1408 public Servant reference_to_servant(org.omg.CORBA.Object reference) argument
1416 "Calling reference_to_servant(reference=" +
1417 reference + ") on poa " + this ) ;
1426 byte [] id = internalReferenceToId(reference);
1438 public byte[] reference_to_id(org.omg.CORBA.Object reference) argument
1445 ORBUtility.dprint( this, "Calling reference_to_id(reference=" +
1446 reference
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java502 // REVISIT: traverse entity reference and send appropriate calls to the validator
608 // 1. entities is false, next child is entity reference: expand tree first
720 protected final void expandEntityRef (Node parent, Node reference){ argument
722 for (kid = reference.getFirstChild(); kid != null; kid = next) {
724 parent.insertBefore(kid, reference);
921 // table, and compare by reference? -SG
1407 * this won't be recognized as entity reference, i.e. attribute value "&foo;" will
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java356 * If the URL contains and reference location, the location will
470 final String reference = page.getRef();
471 if (reference != null) {
473 scrollToReference(reference);
479 scrollToReference(reference);
618 * to the reference (if specified). When done, fire
655 String reference = page.getRef();
656 if (reference != null) {
815 * Scrolls the view to the given reference location
818 * method only knows how to locate a reference i
829 scrollToReference(String reference) argument
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1366 ImageCanvas reference; field in class:RenderClipTest.ErrorWindow
1374 reference = new ImageCanvas();
1380 addImagePanel(reference, "Clipped reference");
1398 reference.setReference(imgref);
1400 diff.setDiff(reference.getImage(), imgtst);

Completed in 72 milliseconds