Searched refs:decl (Results 1 - 25 of 96) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DGElementImpl.java53 public final XSElementDecl decl; field in class:GElementImpl
55 public GElementImpl(QName tagName, XSElementDecl decl) { argument
57 this.decl = decl;
H A DRawTypeSetBuilder.java122 public void modelGroupDecl(XSModelGroupDecl decl) { argument
123 modelGroup(decl.getModelGroup());
131 public void elementDecl(XSElementDecl decl) { argument
133 QName n = BGMBuilder.getName(decl);
135 CElement elementBean = Ring.get(ClassSelector.class).bindToType(decl,null);
137 refs.add(new XmlTypeRef(decl));
141 refs.add(new CClassRef(decl,(CClass)elementBean));
143 refs.add(new CElementInfoRef(decl,(CElementInfo)elementBean));
201 public final XSElementDecl decl; field in class:RawTypeSetBuilder.CClassRef
203 CClassRef(XSElementDecl decl, CClas argument
238 public final XSElementDecl decl; field in class:RawTypeSetBuilder.CElementInfoRef
240 CElementInfoRef(XSElementDecl decl, CElementInfo target) argument
304 private final XSElementDecl decl; field in class:RawTypeSetBuilder.XmlTypeRef
307 XmlTypeRef(XSElementDecl decl) argument
[all...]
H A DDefaultClassBinder.java91 public CElement attGroupDecl(XSAttGroupDecl decl) { argument
92 return allow(decl,decl.getName());
95 public CElement attributeDecl(XSAttributeDecl decl) { argument
96 return allow(decl,decl.getName());
103 public CElement modelGroupDecl(XSModelGroupDecl decl) { argument
195 * and unified with its parent element decl to form a single class.
197 private boolean isCollapsable(XSElementDecl decl) { argument
198 XSType type = decl
262 elementDecl(XSElementDecl decl) argument
352 facet(XSFacet decl) argument
[all...]
H A DUnusedCustomizationChecker.java111 for( BIDeclaration decl : builder.getBindInfo(c).getDecls() )
112 check(decl, c);
132 private void check(BIDeclaration decl, XSComponent c) { argument
133 if( !decl.isAcknowledged() ) {
135 decl.getLocation(),
137 decl.getName().getLocalPart()
144 decl.markAsAcknowledged();
146 for (BIDeclaration d : decl.getChildren())
153 public void attGroupDecl(XSAttGroupDecl decl) { argument
154 if(check(decl))
158 attributeDecl(XSAttributeDecl decl) argument
204 modelGroupDecl(XSModelGroupDecl decl) argument
216 elementDecl(XSElementDecl decl) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DComponentNameFunction.java68 public String attGroupDecl(XSAttGroupDecl decl) { argument
69 String name = decl.getName();
71 return name + " " + nameGetter.attGroupDecl( decl );
77 public String attributeDecl(XSAttributeDecl decl) { argument
78 String name = decl.getName();
80 return name + " " + nameGetter.attributeDecl( decl );
161 public String modelGroupDecl(XSModelGroupDecl decl) { argument
162 String name = decl.getName();
164 return name + " " + nameGetter.modelGroupDecl( decl );
178 public String elementDecl(XSElementDecl decl) { argument
184 identityConstraint(XSIdentityConstraint decl) argument
[all...]
H A DXSFunctionFilter.java73 public T attGroupDecl(XSAttGroupDecl decl) { argument
74 return core.attGroupDecl(decl);
77 public T attributeDecl(XSAttributeDecl decl) { argument
78 return core.attributeDecl(decl);
117 public T modelGroupDecl(XSModelGroupDecl decl) { argument
118 return core.modelGroupDecl(decl);
125 public T elementDecl(XSElementDecl decl) { argument
126 return core.elementDecl(decl);
129 public T identityConstraint(XSIdentityConstraint decl) { argument
130 return core.identityConstraint(decl);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCTypeRef.java67 public CTypeRef(CNonElement type, XSElementDecl decl) { argument
68 this(type, BGMBuilder.getName(decl),getSimpleTypeName(decl), decl.isNillable(), decl.getDefaultValue() );
76 public static QName getSimpleTypeName(XSElementDecl decl) { argument
77 if(decl==null) return null;
79 if(decl.getType().isSimpleType())
80 typeName = BGMBuilder.getName(decl.getType());
H A DCClassRef.java50 * @param decl
53 public CClassRef(Model model, XSComponent source, BIClass decl, CCustomizations customizations) { argument
54 super(model, source, decl.getLocation(), customizations);
55 fullyQualifiedClassName = decl.getExistingClassRef();
61 * @param decl
64 public CClassRef(Model model, XSComponent source, BIEnum decl, CCustomizations customizations) { argument
65 super(model, source, decl.getLocation(), customizations);
66 fullyQualifiedClassName = decl.ref;
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DCoreReflectionFactory.java48 private GenericDeclaration decl; field in class:CoreReflectionFactory
52 decl = d;
56 private GenericDeclaration getDecl(){ return decl;}
62 if (decl instanceof Class) {return ((Class) decl).getClassLoader();}
63 if (decl instanceof Method) {
64 return ((Method) decl).getDeclaringClass().getClassLoader();
66 assert decl instanceof Constructor : "Constructor expected";
67 return ((Constructor) decl).getDeclaringClass().getClassLoader();
/openjdk7/langtools/test/tools/apt/lib/
H A DTestProcessorFactory.java59 for (TypeDeclaration decl : env.getSpecifiedTypeDeclarations()) {
60 if (decl.getQualifiedName().equals(
62 testerDecl = (ClassDeclaration) decl;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java86 // global decls: map from decl name to decl object
95 // extended global decls: map from schema location + decl name to decl object
408 public void addGlobalAttributeDecl(XSAttributeDecl decl) { argument
411 public void addGlobalAttributeDecl(XSAttributeDecl decl, String location) { argument
414 public void addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl) { argument
417 public void addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl, String location) { argument
420 public void addGlobalElementDecl(XSElementDecl decl) { argument
423 public void addGlobalElementDecl(XSElementDecl decl, Strin argument
426 addGlobalElementDeclAll(XSElementDecl decl) argument
429 addGlobalGroupDecl(XSGroupDecl decl) argument
432 addGlobalGroupDecl(XSGroupDecl decl, String location) argument
435 addGlobalNotationDecl(XSNotationDecl decl) argument
438 addGlobalNotationDecl(XSNotationDecl decl, String location) argument
441 addGlobalTypeDecl(XSTypeDefinition decl) argument
444 addGlobalTypeDecl(XSTypeDefinition decl, String location) argument
447 addGlobalComplexTypeDecl(XSComplexTypeDecl decl) argument
450 addGlobalComplexTypeDecl(XSComplexTypeDecl decl, String location) argument
453 addGlobalSimpleTypeDecl(XSSimpleType decl) argument
456 addGlobalSimpleTypeDecl(XSSimpleType decl, String location) argument
459 addComplexTypeDecl(XSComplexTypeDecl decl, SimpleLocator locator) argument
659 addGlobalAttributeDecl(XSAttributeDecl decl) argument
662 addGlobalAttributeDecl(XSAttributeGroupDecl decl, String location) argument
665 addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl) argument
668 addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl, String location) argument
671 addGlobalElementDecl(XSElementDecl decl) argument
674 addGlobalElementDecl(XSElementDecl decl, String location) argument
677 addGlobalElementDeclAll(XSElementDecl decl) argument
680 addGlobalGroupDecl(XSGroupDecl decl) argument
683 addGlobalGroupDecl(XSGroupDecl decl, String location) argument
686 addGlobalNotationDecl(XSNotationDecl decl) argument
689 addGlobalNotationDecl(XSNotationDecl decl, String location) argument
692 addGlobalTypeDecl(XSTypeDefinition decl) argument
695 addGlobalTypeDecl(XSTypeDefinition decl, String location) argument
698 addGlobalComplexTypeDecl(XSComplexTypeDecl decl) argument
701 addGlobalComplexTypeDecl(XSComplexTypeDecl decl, String location) argument
704 addGlobalSimpleTypeDecl(XSSimpleType decl) argument
707 addGlobalSimpleTypeDecl(XSSimpleType decl, String location) argument
710 addComplexTypeDecl(XSComplexTypeDecl decl, SimpleLocator locator) argument
820 addGlobalAttributeDecl(XSAttributeDecl decl) argument
825 addGlobalAttributeDecl(XSAttributeDecl decl, String location) argument
835 addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl) argument
840 addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl, String location) argument
850 addGlobalElementDeclAll(XSElementDecl decl) argument
863 addGlobalElementDecl(XSElementDecl decl) argument
868 addGlobalElementDecl(XSElementDecl decl, String location) argument
878 addGlobalGroupDecl(XSGroupDecl decl) argument
883 addGlobalGroupDecl(XSGroupDecl decl, String location) argument
893 addGlobalNotationDecl(XSNotationDecl decl) argument
898 addGlobalNotationDecl(XSNotationDecl decl, String location) argument
908 addGlobalTypeDecl(XSTypeDefinition decl) argument
918 addGlobalTypeDecl(XSTypeDefinition decl, String location) argument
933 addGlobalComplexTypeDecl(XSComplexTypeDecl decl) argument
938 addGlobalComplexTypeDecl(XSComplexTypeDecl decl, String location) argument
948 addGlobalSimpleTypeDecl(XSSimpleType decl) argument
955 addGlobalSimpleTypeDecl(XSSimpleType decl, String location) argument
965 addIDConstraintDecl(XSElementDecl elmDecl, IdentityConstraint decl) argument
970 addIDConstraintDecl(XSElementDecl elmDecl, IdentityConstraint decl, String location) argument
1080 addComplexTypeDecl(XSComplexTypeDecl decl, SimpleLocator locator) argument
[all...]
H A DXSLoaderImpl.java237 XSElementDecl decl = (XSElementDecl) map.item(i);
238 if (cachedGrammar.getGlobalElementDecl(decl.getName()) == null) {
239 cachedGrammar.addGlobalElementDecl(decl);
247 XSAttributeDecl decl = (XSAttributeDecl) map.item(i);
248 if (cachedGrammar.getGlobalAttributeDecl(decl.getName()) == null) {
249 cachedGrammar.addGlobalAttributeDecl(decl);
257 XSTypeDefinition decl = (XSTypeDefinition) map.item(i);
258 if (cachedGrammar.getGlobalTypeDecl(decl.getName()) == null) {
259 cachedGrammar.addGlobalTypeDecl(decl);
267 XSAttributeGroupDecl decl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/
H A DXSTermFunction.java42 T modelGroupDecl( XSModelGroupDecl decl );
44 T elementDecl( XSElementDecl decl );
H A DXSTermVisitor.java41 void modelGroupDecl( XSModelGroupDecl decl );
43 void elementDecl( XSElementDecl decl );
H A DXSTermFunctionWithParam.java42 T modelGroupDecl( XSModelGroupDecl decl, P param ); argument
44 T elementDecl( XSElementDecl decl, P param ); argument
H A DXSFunction.java50 T attGroupDecl( XSAttGroupDecl decl );
51 T attributeDecl( XSAttributeDecl decl );
58 T identityConstraint(XSIdentityConstraint decl); argument
H A DXSVisitor.java46 void attGroupDecl( XSAttGroupDecl decl );
47 void attributeDecl( XSAttributeDecl decl );
54 void identityConstraint( XSIdentityConstraint decl); argument
/openjdk7/jdk/src/share/classes/sun/reflect/generics/scope/
H A DAbstractScope.java53 protected AbstractScope(D decl){ recvr = decl;} argument
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationMirrorImpl.java50 protected final Declaration decl; field in class:AnnotationMirrorImpl
53 AnnotationMirrorImpl(AptEnv env, Attribute.Compound anno, Declaration decl) { argument
56 this.decl = decl;
121 return (decl == null) ? null : decl.getPosition();
126 return this.decl;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaWriter.java166 public void attGroupDecl( XSAttGroupDecl decl ) {
169 println(MessageFormat.format("<attGroup name=\"{0}\">", decl.getName()));
174 itr = decl.iterateAttGroups();
178 itr = decl.iterateDeclaredAttributeUses();
186 public void dumpRef( XSAttGroupDecl decl ) {
187 println(MessageFormat.format("<attGroup ref=\"'{'{0}'}'{1}\"/>", decl.getTargetNamespace(), decl.getName()));
191 XSAttributeDecl decl = use.getDecl();
202 if(decl.isLocal()) {
204 dump(decl,additionalAtt
216 dump( XSAttributeDecl decl, String additionalAtts ) argument
455 elementDecl( XSElementDecl decl, String extraAtts ) argument
598 identityConstraint(XSIdentityConstraint decl) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAxis.java111 public Iterator<XSComponent> elementDecl(XSElementDecl decl) {
112 XSComplexType ct = decl.getType().asComplexType();
121 public Iterator<XSComponent> modelGroupDecl(XSModelGroupDecl decl) {
122 return descendants(decl.getModelGroup());
198 public Iterator<XSComponent> elementDecl(XSElementDecl decl) {
199 if(visited.add(decl))
200 return ret(decl, iterator(decl.getType()) );
226 public Iterator<XSComponent> modelGroupDecl(XSModelGroupDecl decl) {
227 if(visited.add(decl))
559 modelGroupDecl(XSModelGroupDecl decl) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java148 * @param decl the type declaration
156 DeclaredType getDeclaredType(TypeDeclaration decl, argument
174 * equivalent to <tt>getDeclaredType(decl, typeArgs)</tt>.
177 * @param decl the type declaration
187 TypeDeclaration decl,
186 getDeclaredType(DeclaredType containing, TypeDeclaration decl, TypeMirror... typeArgs) argument
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DTypeVariableImpl.java55 private TypeVariableImpl(D decl, String n, FieldTypeSignature[] bs, argument
58 genericDeclaration = decl;
76 * @param decl - the reflective object that declared the type variable
87 TypeVariableImpl<T> make(T decl, String name, argument
90 return new TypeVariableImpl<T>(decl, name, bs, f);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DTDTDReader.java214 for( BIInterface decl : bindInfo.interfaces() ) {
216 bindInfo.getTargetPackage(), decl.name(), copyLocator() );
217 decls.put(decl,intf);
218 fromName.put(decl.name(),new InterfaceAcceptor() {
236 BIInterface decl = e.getKey();
239 for (String member : decl.members()) {
244 error(decl.getSourceLocation(),
276 for( BIElement decl: bindInfo.elements() ) {
277 Element e = elements.get(decl.name());
279 error(decl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DXMLDeclarationParser.java91 String decl = xmlDeclStr.toString();
95 int xmlIndex = decl.indexOf(utf16Decl);
99 xmlIndex = decl.indexOf("<?xml");
105 // no XML decl
113 xmlDecl = new String(decl.getBytes(), "utf-16");
116 xmlDecl = decl;

Completed in 65 milliseconds

1234