Searched refs:Delegate (Results 1 - 25 of 50) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/pept/presentation/
H A DStub.java32 import com.sun.pept.Delegate;
56 public void _setDelegate(Delegate delegate);
62 * @return a Delegate with ...
65 public Delegate _getDelegate();
/openjdk7/corba/src/share/classes/org/omg/CORBA_2_3/portable/
H A DObjectImpl.java34 import org.omg.CORBA_2_3.portable.Delegate;
54 org.omg.CORBA.portable.Delegate delegate = _get_delegate();
55 if (delegate instanceof Delegate)
56 return ((Delegate) delegate).get_codebase(this);
H A DDelegate.java35 * Delegate class provides the ORB vendor specific implementation
36 * of CORBA object. It extends org.omg.CORBA.portable.Delegate and
39 * @see org.omg.CORBA.portable.Delegate
44 public abstract class Delegate extends org.omg.CORBA.portable.Delegate { class in inherits:org.omg.CORBA.portable.Delegate
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEventQueueDelegate.java34 new StringBuilder("EventQueueDelegate.Delegate");
36 public static void setDelegate(Delegate delegate) {
39 public static Delegate getDelegate() {
41 (Delegate) AppContext.getAppContext().get(EVENT_QUEUE_DELEGATE_KEY);
43 public interface Delegate { interface in class:EventQueueDelegate
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DDynamicStub.java30 import org.omg.CORBA.portable.Delegate ;
44 void setDelegate( Delegate delegate ) ;
48 Delegate getDelegate() ;
H A DStubWrapper.java30 import org.omg.CORBA.portable.Delegate ;
59 public void setDelegate( Delegate delegate )
64 public Delegate getDelegate()
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DCorbaClientDelegate.java29 extends org.omg.CORBA_2_3.portable.Delegate
/openjdk7/jdk/src/share/classes/com/sun/pept/
H A DDelegate.java26 /** Java interface "Delegate.java" generated from Poseidon for UML.
41 public interface Delegate { interface
67 } // end Delegate
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A DServant.java28 import org.omg.PortableServer.portable.Delegate;
44 private transient Delegate _delegate = null;
51 final public Delegate _get_delegate() {
68 final public void _set_delegate(Delegate delegate) {
206 * be supported by the <code>Delegate</code> that implements the
221 // of the Delegate interface with a get_interface method
224 org.omg.PortableServer.portable.Delegate delegate = _get_delegate();
/openjdk7/corba/src/share/classes/org/omg/PortableServer/portable/
H A DDelegate.java35 * The Delegate interface provides the ORB vendor specific
39 public interface Delegate { interface
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DTie.java42 import org.omg.CORBA.portable.Delegate;
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DObjectImpl.java41 * forwarded to a <code>Delegate</code> object stored in the <code>ObjectImpl</code>
43 * <code>Delegate</code> can be implemented by a different vendor-specific ORB.
50 * The field that stores the <code>Delegate</code> instance for
51 * this <code>ObjectImpl</code> object. This <code>Delegate</code>
55 * <code>Delegate</code> object.
57 private transient Delegate __delegate;
61 * Retrieves the reference to the vendor-specific <code>Delegate</code>
65 * @return the Delegate contained in this ObjectImpl instance
69 public Delegate _get_delegate() {
77 * Sets the Delegate fo
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DFieldPosition.java203 return new Delegate();
277 private class Delegate implements Format.FieldDelegate { class in class:FieldPosition
/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigest.java167 new Delegate((MessageDigestSpi)objs[0], algorithm);
222 new Delegate((MessageDigestSpi)objs[0], algorithm);
270 new Delegate((MessageDigestSpi)objs[0], algorithm);
522 static class Delegate extends MessageDigest { class in class:MessageDigest
528 public Delegate(MessageDigestSpi digestSpi, String algorithm) { method in class:MessageDigest.Delegate
549 new Delegate(digestSpiClone,
H A DKeyPairGenerator.java168 kpg = new Delegate(spi, algorithm);
220 return new Delegate(instance, t, algorithm);
320 // empty, overridden in Delegate
364 // of Delegate, in which case initialize(keysize, random) is
436 // of Delegate, in which case initialize(params, random) is
485 // of Delegate, in which case generateKeyPair is
530 private static final class Delegate extends KeyPairGenerator { class in class:KeyPairGenerator
549 Delegate(KeyPairGeneratorSpi spi, String algorithm) { method in class:KeyPairGenerator.Delegate
554 Delegate(Instance instance, Iterator<Service> serviceIterator, method in class:KeyPairGenerator.Delegate
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DDynamicStubImpl.java39 import org.omg.CORBA.portable.Delegate ;
84 public void setDelegate( Delegate delegate )
89 public Delegate getDelegate()
H A DStubConnectImpl.java38 import org.omg.CORBA.portable.Delegate;
66 Delegate del = null ;
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DIIOPProxyImpl.java29 import org.omg.CORBA.portable.Delegate;
60 ((Stub)stub)._set_delegate((Delegate)delegate);
/openjdk7/jdk/test/java/awt/EventQueue/6638195/
H A Dbug6638195.java28 * @summary tests if EventQueueDelegate.Delegate is invoked.
80 final EventQueueDelegate.Delegate delegate) {
140 static class MyEventQueueDelegate implements EventQueueDelegate.Delegate {
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A D_IDLTypeStub.java50 public _IDLTypeStub (org.omg.CORBA.portable.Delegate delegate)
135 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
H A DIDLTypeHelper.java107 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A D_IDLTypeStub.java54 * with the given <code>Delegate</code> object.
56 * @param delegate a Delegate object
59 public _IDLTypeStub (org.omg.CORBA.portable.Delegate delegate)
140 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
H A D_PolicyStub.java51 * with the given <code>Delegate</code> object.
53 * @param delegate a Delegate Object
55 public _PolicyStub (org.omg.CORBA.portable.Delegate delegate)
151 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
H A DIDLTypeHelper.java90 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
H A DPolicyHelper.java90 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();

Completed in 66 milliseconds

12