Searched defs:owner (Results 76 - 100 of 213) sorted by relevance

123456789

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DAsyncMethodHandler.java64 AsyncMethodHandler(SEIStub owner, JavaMethodImpl jm, JavaMethodImpl sync) { argument
65 super(owner, sync);
138 private final RequestContext rc = owner.requestContext.copy();
198 owner.doProcessAsync(req, rc, callback);
H A DSEIMethodHandler.java75 SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { argument
76 super(owner);
104 bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory());
106 bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory());
108 bodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter);
129 switch(owner.soapVersion) {
169 builders.add(new ResponseBuilder.Header(owner.soapVersion, param, setter));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPortImpl.java51 private final WSDLServiceImpl owner; field in class:WSDLPortImpl
59 public WSDLPortImpl(XMLStreamReader xsr,WSDLServiceImpl owner, QName name, QName binding) { argument
61 this.owner = owner;
79 return owner;
H A DWSDLPortTypeImpl.java44 private WSDLModelImpl owner; field in class:WSDLPortTypeImpl
46 public WSDLPortTypeImpl(XMLStreamReader xsr,WSDLModelImpl owner, QName name) { argument
49 this.owner = owner;
76 return owner;
81 op.freez(owner);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractMultiInstanceResolver.java48 protected /*almost final*/ WSEndpoint owner; field in class:AbstractMultiInstanceResolver
84 this.owner = endpoint;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointMethodHandler.java88 private final SEIInvokerTube owner; field in class:EndpointMethodHandler
90 public EndpointMethodHandler(SEIInvokerTube owner, JavaMethodImpl method, WSBinding binding) { argument
91 this.owner = owner;
246 Object ret = owner.getInvoker(req).invoke(req, method, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DAttributeDeclImpl.java38 public AttributeDeclImpl( SchemaDocumentImpl owner, argument
44 super(owner,_annon,_loc,_fa,_targetNamespace,_name,_anonymous);
H A DAttributeUseImpl.java38 public AttributeUseImpl( SchemaDocumentImpl owner, AnnotationImpl ann, Locator loc, ForeignAttributesImpl fa, Ref.Attribute _decl, argument
41 super(owner,ann,loc,fa);
H A DDeclarationImpl.java35 DeclarationImpl( SchemaDocumentImpl owner, argument
39 super(owner,_annon,loc,fa);
H A DFacetImpl.java36 public FacetImpl( SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, argument
39 super(owner,_annon,_loc,_fa);
H A DNotationImpl.java41 public NotationImpl( SchemaDocumentImpl owner, AnnotationImpl _annon, argument
44 super(owner,_annon,_loc,_fa,owner.getTargetNamespace(),_name,false);
H A DParticleImpl.java45 public ParticleImpl( SchemaDocumentImpl owner, AnnotationImpl _ann, argument
48 super(owner,_ann,_loc,null);
53 public ParticleImpl( SchemaDocumentImpl owner, AnnotationImpl _ann, argument
56 super(owner,_ann,_loc,null);
61 public ParticleImpl( SchemaDocumentImpl owner, AnnotationImpl _ann, Ref.Term _term, Locator _loc ) { argument
62 this(owner,_ann,_term,_loc,1,1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DParserContext.java62 private final XSOMParser owner; field in class:ParserContext
80 public ParserContext( XSOMParser owner, XMLParser parser ) { argument
81 this.owner = owner;
102 return owner.getEntityResolver();
106 return owner.getAnnotationParserFactory();
179 if( owner.getErrorHandler()==null )
182 return owner.getErrorHandler();
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest5023550.java27 * @summary Tests complex references to owner
42 private final Owner owner = new Owner(); field in class:Test5023550
46 encoder.setOwner(this.owner);
54 decoder.setOwner(this.owner);
58 return this.owner.newA(this.owner.newB().newC());
H A DTest6921644.java97 private Owner owner; field in class:Test6921644.Author
100 @ConstructorProperties("owner")
101 public Author(Owner<Author> owner) { argument
102 this.owner = owner;
103 this.id = owner.getId();
107 return this.owner;
141 private Owner owner; field in class:Test6921644.Category
144 @ConstructorProperties("owner")
145 public Category(Owner owner) { argument
168 private Owner owner; field in class:Test6921644.Document
173 Document(Owner owner) argument
[all...]
/openjdk7/jdk/test/javax/swing/ToolTipManager/7123767/
H A Dbug7123767.java64 public Popup getPopup(Component owner, Component contents, int x, int y) { argument
79 return super.getPopup(owner, contents, x, y);
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DGenericsFactory.java67 * If <tt>owner</tt> is <tt>null</tt>, the declaring class of
68 * <tt>declaration</tt> is used as the owner of this parameterized
92 Type owner);
90 makeParameterizedType(Type declaration, Type[] typeArgs, Type owner) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAWTXSettings.java77 public void selectionChanged(int screen, XMSelection sel, long owner , XPropertyEvent event) {
78 log.fine("Selection changed on sel " + sel + " screen = " + screen + " owner = " + owner + " event = " + event);
79 updateXSettings(screen,owner);
104 private void updateXSettings(int screen, long owner) { argument
105 final Map updatedSettings = getUpdatedSettings(owner);
116 private Map getUpdatedSettings(final long owner) { argument
117 if (log.isLoggable(PlatformLogger.FINE)) log.fine("owner =" + owner);
118 if (0 == owner) {
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisAclFileAttributeView.java384 public void setOwner(UserPrincipal owner) throws IOException { argument
387 if (!(owner instanceof UnixUserPrincipals.User))
389 if (owner instanceof UnixUserPrincipals.Group)
390 throw new IOException("'owner' parameter is a group");
391 int uid = ((UnixUserPrincipals.User)owner).uid();
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java52 Scope emptyScope = new Scope(symtab.unnamedPackage); // any owner will do
148 inner.owner = outer;
169 * Create a class symbol, init the members scope, and add it to owner's scope.
171 ClassSymbol createClass(Name name, Symbol owner) { argument
172 ClassSymbol sym = new ClassSymbol(0, name, owner);
174 if (owner != symtab.unnamedPackage)
175 owner.members().enter(sym);
194 out.println("owner:" + s.owner);
223 + ((e.sym.owner !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DSourceTreeManager.java88 * @param owner Document that was previously processed by this liaison.
90 * @return The base URI of the owner argument.
92 public String findURIFromDoc(int owner) argument
100 if (owner == sTree.m_root)
H A DXPathVisitor.java45 * <code>boolean visitComponentType(ExpressionOwner owner, ComponentType compType)</code>.
46 * The ExpressionOwner argument is the owner of the component, and can
57 * @param owner The owner of the expression, to which the expression can
62 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
69 * @param owner The owner of the expression, to which the expression can
74 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) argument
81 * @param owner The owner o
86 visitStep(ExpressionOwner owner, NodeTest step) argument
101 visitPredicate(ExpressionOwner owner, Expression pred) argument
113 visitBinaryOperation(ExpressionOwner owner, Operation op) argument
125 visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) argument
137 visitVariableRef(ExpressionOwner owner, Variable var) argument
149 visitFunction(ExpressionOwner owner, Function func) argument
161 visitMatchPattern(ExpressionOwner owner, StepPattern pattern) argument
173 visitUnionPattern(ExpressionOwner owner, UnionPattern pattern) argument
185 visitStringLiteral(ExpressionOwner owner, XString str) argument
198 visitNumberLiteral(ExpressionOwner owner, XNumber num) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkingIterator.java304 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
306 if(visitor.visitLocationPath(owner, this))
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DOperation.java172 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
174 if(visitor.visitBinaryOperation(owner, this))
H A DUnaryOperation.java124 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
126 if(visitor.visitUnaryOperation(owner, this))

Completed in 483 milliseconds

123456789