Searched refs:typeDecl (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DModelBuilder.java51 public boolean checkAndSetProcessed(TypeDeclaration typeDecl); argument
52 public boolean isRemoteException(TypeDeclaration typeDecl); argument
56 * @param typeDecl
59 public boolean isServiceException(TypeDeclaration typeDecl); argument
61 public boolean isRemote(TypeDeclaration typeDecl); argument
H A DWebServiceVisitor.java78 protected TypeDeclaration typeDecl; field in class:WebServiceVisitor
99 typeDecl = d;
118 typeDecl = d;
222 } else if (d.equals(typeDecl)) {
421 if (soapBinding == null && !method.getDeclaringType().equals(typeDecl)) {
433 newBinding = pushSOAPBinding(soapBinding, method, typeDecl);
473 method.getDeclaringType().equals(typeDecl) ||
619 protected boolean isLegalMethod(MethodDeclaration method, TypeDeclaration typeDecl) { argument
622 if (typeDecl instanceof InterfaceDeclaration && webMethod != null && webMethod.exclude())
623 builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_SEI_ANNOTATION_ELEMENT_EXCLUDE("exclude=true", typeDecl
686 isLegalParameter(ParameterDeclaration param, MethodDeclaration method, TypeDeclaration typeDecl, int paramIndex) argument
720 isValidOnewayMethod(MethodDeclaration method, TypeDeclaration typeDecl) argument
[all...]
H A DWebServiceAP.java265 public boolean checkAndSetProcessed(TypeDeclaration typeDecl) { argument
266 if (!processedTypeDecls.contains(typeDecl)) {
267 processedTypeDecls.add(typeDecl);
339 public boolean isException(TypeDeclaration typeDecl) { argument
340 return isSubtype(typeDecl, exceptionDecl);
343 public boolean isRemoteException(TypeDeclaration typeDecl) { argument
344 return isSubtype(typeDecl, remoteExceptionDecl);
346 public boolean isServiceException(TypeDeclaration typeDecl) { argument
347 if(!isSubtype(apEnv,typeDecl,exceptionDecl))
349 if(isSubtype(apEnv,typeDecl,runtimeExceptionDec
354 isRemote(TypeDeclaration typeDecl) argument
[all...]
H A DTypeModeler.java115 TypeDeclaration typeDecl = getDeclaration(type);
116 if (typeDecl == null)
119 if (isSubtype(typeDecl, defHolder)) {
128 FieldDeclaration member = getValueMember(typeDecl);
H A DTypeMonikerFactory.java81 TypeDeclaration typeDecl = apEnv.getTypeDeclaration(typeDeclName);
87 return apEnv.getTypeUtils().getDeclaredType(typeDecl, tmpArgs);
H A DWebServiceWrapperGenerator.java172 ClassDeclaration typeDecl = ((ClassType)thrownType).getDeclaration();
173 if (typeDecl == null){
177 boolean tmp = generateExceptionBean(typeDecl, beanPackage);
227 builder.onError(WebserviceapMessages.WEBSERVICEAP_METHOD_REQUEST_WRAPPER_BEAN_NAME_NOT_UNIQUE(typeDecl.getQualifiedName(), method.toString()));
248 builder.onError(WebserviceapMessages.WEBSERVICEAP_METHOD_RESPONSE_WRAPPER_BEAN_NAME_NOT_UNIQUE(typeDecl.getQualifiedName(), method.toString()));
431 builder.onError(WebserviceapMessages.WEBSERVICEAP_METHOD_EXCEPTION_BEAN_NAME_NOT_UNIQUE(typeDecl.getQualifiedName(), thrownDecl.getQualifiedName()));
/openjdk7/langtools/test/tools/apt/Compile/
H A DWarnAPF.java53 for(TypeDeclaration typeDecl : env.getSpecifiedTypeDeclarations()) {
54 messager.printNotice(typeDecl.getPosition(), "You are about to be warned");
55 messager.printWarning(typeDecl.getPosition(), "Strange class name");
57 for(AnnotationMirror annotMirror : typeDecl.getAnnotationMirrors()) {
H A DErrorAPF.java53 for(TypeDeclaration typeDecl : env.getSpecifiedTypeDeclarations())
54 messager.printError(typeDecl.getPosition(), "Boring class name");
/openjdk7/langtools/test/tools/apt/Basics/
H A DFreshnessApf.java72 for (TypeDeclaration typeDecl : env.getSpecifiedTypeDeclarations()) {
73 for (FieldDeclaration fieldDecl: typeDecl.getFields() ) {
75 System.out.println(typeDecl.getQualifiedName() +
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarationScanner.java120 for(TypeDeclaration typeDecl: d.getNestedTypes()) {
121 typeDecl.accept(this);
147 for(TypeDeclaration typeDecl: d.getNestedTypes()) {
148 typeDecl.accept(this);
H A DSourceOrderDeclScanner.java193 for(TypeDeclaration typeDecl: d.getNestedTypes()) {
194 decls.add(typeDecl);
226 for(TypeDeclaration typeDecl: d.getNestedTypes()) {
227 decls.add(typeDecl);
/openjdk7/langtools/test/tools/javac/T6956462/
H A DT6956462.java69 for (Tree typeDecl : file.getTypeDecls()) {
70 typeDecl.accept(this, v);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DConfigReader.java124 for (TypeDeclaration typeDecl : rootClasses) {
126 String qualifiedName = typeDecl.getQualifiedName();
137 classesToBeIncluded.add(new Reference(typeDecl,env));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMBuilder.java68 * @param typeDecl get content model for which complex type
71 public XSCMValidator getContentModel(XSComplexTypeDecl typeDecl) { argument
75 short contentType = typeDecl.getContentType();
81 XSParticleDecl particle = (XSParticleDecl)typeDecl.getParticle();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractTraverser.java728 void checkNotationType(String refName, XSTypeDefinition typeDecl, Element elem) { argument
729 if (typeDecl.getTypeCategory() == XSTypeDefinition.SIMPLE_TYPE &&
730 ((XSSimpleType)typeDecl).getVariety() == XSSimpleType.VARIETY_ATOMIC &&
731 ((XSSimpleType)typeDecl).getPrimitiveKind() == XSSimpleType.PRIMITIVE_NOTATION) {
732 if ((((XSSimpleType)typeDecl).getDefinedFacets() & XSSimpleType.FACET_ENUMERATION) == 0) {
733 reportSchemaError("enumeration-required-notation", new Object[]{typeDecl.getName(), refName, DOMUtil.getLocalName(elem)}, elem);

Completed in 46 milliseconds