Searched defs:owner (Results 51 - 75 of 213) sorted by relevance

123456789

/openjdk7/jdk/test/java/awt/Focus/ActualFocusedWindowTest/
H A DActualFocusedWindowBlockingTest.java27 @summary Tests that previosly focused owned window doesn't steal focus when an owner's component requests focus.
44 Frame owner = new Frame("Owner Frame"); field in class:ActualFocusedWindowBlockingTest
45 Window win = new Window(owner);
64 owner.add(fButton);
68 owner.setName("OWNER_FRAME");
72 tuneAndShowWindows(new Window[] {owner, win, frame});
90 throw new TestFailedException("The owner's component [" + fButton + "] couldn't be focused by click");
101 throw new TestFailedException("The owner's component [" + fButton + "] couldn't be focused by request");
111 Util.clickOnTitle(owner, robot);
113 throw new TestFailedException("The owner'
[all...]
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNonfocusableOwnerTest.java27 @summary Tests that Window having non-focusable owner can't be a focus owner.
62 frame.setName("Frame-owner");
65 dialog.setName("Dialog-owner");
93 void test1(Window owner, Window child) { argument
94 System.out.println("* * * STAGE 1 * * *\nWindow owner: " + owner);
96 owner.setFocusableWindowState(false);
97 owner.setVisible(true);
109 owner
112 test2(Window owner, Window child1, Window child2) argument
135 test3(Window owner, Window child1, Window child2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpSendInputStream.java38 HttpSendSocket owner; field in class:HttpSendInputStream
43 * @param owner the HttpSendSocket that is providing this stream
45 public HttpSendInputStream(InputStream in, HttpSendSocket owner) argument
50 this.owner = owner;
54 * Mark this stream as inactive for its owner socket, so the next time
55 * a read is attempted, the owner will be notified and a new underlying
69 in = owner.readNotify();
84 in = owner.readNotify();
97 in = owner
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFunction.java119 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
121 if(visitor.visitFunction(owner, this))
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNumber.java433 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
435 visitor.visitNumberLiteral(owner, this);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectMonitor.java72 Address o = owner();
80 public Address owner() { return addr.getAddressAt(ownerFieldOffset); } method in class:ObjectMonitor
82 // void set_owner(void* owner);
88 // void set_queue(void* owner);
106 // don't count the owner of the monitor
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionPropertyChangeListener.java145 private ActionPropertyChangeListener owner; field in class:ActionPropertyChangeListener.OwnedWeakReference
148 ActionPropertyChangeListener owner) {
150 this.owner = owner;
154 return owner;
147 OwnedWeakReference(U target, ReferenceQueue<? super U> queue, ActionPropertyChangeListener owner) argument
H A DPopup.java65 * Creates a <code>Popup</code> for the Component <code>owner</code>
66 * containing the Component <code>contents</code>. <code>owner</code>
70 * A null <code>owner</code> implies there is no valid parent.
77 * @param owner Component mouse coordinates are relative to, may be null
83 protected Popup(Component owner, Component contents, int x, int y) { argument
88 reset(owner, contents, x, y);
147 void reset(Component owner, Component contents, int ownerX, int ownerY) { argument
149 component = createComponent(owner);
187 private Window getParentWindow(Component owner) { argument
190 if (owner instanceo
207 createComponent(Component owner) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLDecoder.java70 private Object owner; field in class:XMLDecoder
91 * @param owner The owner of this stream.
94 public XMLDecoder(InputStream in, Object owner) { argument
95 this(in, owner, null);
103 * @param owner the owner of this stream.
107 public XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener) { argument
108 this(in, owner, exceptionListener, null);
117 * @param owner th
126 XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener, ClassLoader cl) argument
161 XMLDecoder(InputSource is, Object owner, ExceptionListener el, ClassLoader cl) argument
262 setOwner(Object owner) argument
299 createHandler(Object owner, ExceptionListener el, ClassLoader cl) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DAclImpl.java62 * Constructs the ACL with a specified owner
64 * @param owner owner of the ACL.
67 public AclImpl (PrincipalImpl owner, String name) { argument
68 super(owner);
76 * @param caller the principal invoking this method. It must be an owner
80 * @exception NotOwnerException if the caller principal is not an owner
107 * @param caller the principal invoking this method. It must be an owner
112 * @exception NotOwnerException if the caller principal is not an owner of
138 * @param caller the principal invoking this method. It must be an owner
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DClipboard.java58 protected ClipboardOwner owner; field in class:Clipboard
97 * transferable object and registers the specified clipboard owner
98 * as the owner of the new contents.
100 * If there is an existing owner different from the argument
101 * <code>owner</code>, that owner is notified that it no longer
103 * of <code>ClipboardOwner.lostOwnership()</code> on that owner.
116 * @param owner the object which owns the clipboard content
120 public synchronized void setContents(Transferable contents, ClipboardOwner owner) { argument
121 final ClipboardOwner oldOwner = this.owner;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DElementHandler.java37 private DocumentHandler owner; field in class:ElementHandler
45 * @return the owner document handler
48 return this.owner;
53 * The owner document handler should be set after instantiation.
56 * @param owner the owner document handler
59 final void setOwner(DocumentHandler owner) { argument
60 if (owner == null) {
61 throw new IllegalArgumentException("Every element should have owner");
63 this.owner
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAnnotationUse.java66 private JCodeModel owner() { method in class:JAnnotationUse
67 return clazz.owner();
249 JAnnotationUse annotationUse = new JAnnotationUse(owner().ref(value));
269 f.t(owner().ref(value.getDeclaringClass())).p('.').p(value.name());
367 JAnnotationArrayMember arrayMember = new JAnnotationArrayMember(owner());
384 // JAnnotationUse annotationUse = new JAnnotationUse(owner().ref(className));
399 JAnnotationUse annotationUse = new JAnnotationUse(owner().ref(clazz));
H A DJArrayClass.java44 JArrayClass( JCodeModel owner, JType component ) { argument
45 super(owner);
67 return owner().rootPackage();
71 return owner().ref(Object.class);
120 return new JArrayClass(owner(),c);
H A DJDocComment.java62 private final JCodeModel owner; field in class:JDocComment
65 public JDocComment(JCodeModel owner) { argument
66 this.owner = owner;
96 return addThrows( owner.ref(exception) );
H A DJType.java63 /** Gets the owner code model object. */
64 public abstract JCodeModel owner(); method in class:JType
H A DJTypeVar.java44 JTypeVar(JCodeModel owner, String _name) { argument
45 super(owner);
83 return owner().ref(Object.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DElementAdapter.java109 public FieldOutline owner() { method in class:ElementAdapter.FieldAccessorImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCCustomizations.java56 * The owner model component that carries these customizations.
58 private CCustomizable owner; field in class:CCustomizations
67 /*package*/ void setParent(Model model,CCustomizable owner) { argument
68 if(this.owner!=null) return;
76 assert owner!=null;
77 this.owner = owner;
86 assert owner!=null;
87 return owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIUserConversion.java68 this.owner = bi;
103 /** The owner {@link BindInfo} object to which this object belongs. */
104 private final BindInfo owner; field in class:BIUserConversion
133 t = JPrimitiveType.parse(owner.codeModel,type);
136 type = owner.getTargetPackage().name()+'.'+type;
142 JDefinedClass cls = owner.codeModel._class(type);
156 JDefinedClass adapter = generateAdapter(owner.codeModel, parse, print, t.boxify());
169 JPackage pkg = owner.getTargetPackage();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DTypeInfoImpl.java58 protected final TypeInfoSetImpl<TypeT,ClassDeclT,FieldT,MethodT> owner; field in class:TypeInfoImpl
71 this.owner = builder.typeInfoSet;
84 return owner.nav;
88 return owner.reader;
H A DTypeRefImpl.java40 protected final ElementPropertyInfoImpl<TypeT,ClassDeclT,?,?> owner; field in class:TypeRefImpl
45 public TypeRefImpl(ElementPropertyInfoImpl<TypeT, ClassDeclT, ?, ?> owner, QName elementName, TypeT type, boolean isNillable, String defaultValue) { argument
46 this.owner = owner;
51 assert owner!=null;
81 ref = owner.parent.builder.getTypeInfo(type,owner);
86 return owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DStartTag.java61 private ContainerElement owner; field in class:StartTag
75 public StartTag(ContainerElement owner, String uri, String localName) { argument
76 this(owner.document,uri,localName);
77 this.owner = owner;
214 if(owner!=null && owner.isBlocked())
227 if(owner!=null) {
228 assert owner.startTag==this;
229 owner
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java113 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
117 public static Dispatch<SOAPMessage> createSAAJDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) { argument
119 return new com.sun.xml.internal.ws.client.dispatch.SOAPMessageDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
127 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
140 * createDispatch(port,owner,binding,DataSource.class,mode,next);
144 public static Dispatch<DataSource> createDataSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) { argument
146 return new DataSourceDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
154 * createDispatch(port,owner,binding,DataSource.class,mode,next);
167 * createDispatch(port,owner,binding,Source.class,mode,next);
171 public static Dispatch<Source> createSourceDispatch(QName portName, WSService owner, WSBindin argument
208 createDispatch(QName portName, WSService owner, WSBinding binding, Class<T> clazz, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) argument
247 createDispatch(WSPortInfo portInfo, WSService owner, WSBinding binding, Class<T> clazz, Service.Mode mode, @Nullable WSEndpointReference epr) argument
287 createJAXBDispatch( QName portName, WSService owner, WSBinding binding, JAXBContext jaxbContext, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) argument
328 createMessageDispatch( QName portName, WSService owner, WSBinding binding, Tube next, @Nullable WSEndpointReference epr) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DPortInfo.java56 private final @NotNull WSServiceDelegate owner; field in class:PortInfo
73 public PortInfo(WSServiceDelegate owner, EndpointAddress targetEndpoint, QName name, BindingID bindingId) { argument
74 this.owner = owner;
78 this.portModel = getPortModel(owner, name);
83 public PortInfo(@NotNull WSServiceDelegate owner, @NotNull WSDLPort port) { argument
84 this.owner = owner;
101 map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer()));
135 configFeatures = PolicyUtil.getPortScopedFeatures(policyMap, owner
149 getPortModel(WSServiceDelegate owner, QName portName) argument
[all...]

Completed in 347 milliseconds

123456789