Searched defs:declaredType (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBElement.java40 * <li>element declaration's <b><tt>declaredType</tt></b> (<tt>xs:element @type</tt> attribute)</li>
45 * <p>The <tt>declaredType</tt> and <tt>scope</tt> property are the
70 final protected Class<T> declaredType; field in class:JAXBElement
97 * @param declaredType Java binding of xml element declaration's type
107 Class<T> declaredType,
110 if(declaredType==null || name==null)
112 this.declaredType = declaredType;
122 * This is just a convenience method for <tt>new JAXBElement(name,declaredType,GlobalScope.class,value)</tt>
124 public JAXBElement(QName name, Class<T> declaredType, argument
106 JAXBElement(QName name, Class<T> declaredType, Class scope, T value) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DType.java86 WrongTypeException. declaredType must not be null. Throws a
88 public Field getField(String fieldName, Type declaredType, argument
93 WrongTypeException. declaredType must not be null. This does not
95 getField(fieldName, declaredType, false). Throws a
97 public Field getField(String fieldName, Type declaredType) throws WrongTypeException; argument
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DTypeCache.java126 public Struct getStructForName(final String declaredType) { return structsByName.get(declaredType); } argument
127 public CFType getCFTypeForName(final String declaredType) { return cfTypesByName.get(declaredType); } argument
128 public Opaque getOpaqueForName(final String declaredType) { return opaquesByName.get(declaredType); } argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicType.java197 public Field getField(String fieldName, Type declaredType, argument
203 if (!res.getType().equals(declaredType)) {
205 " is not of type " + declaredType +
211 public Field getField(String fieldName, Type declaredType) throws WrongTypeException { argument
212 return getField(fieldName, declaredType, false);

Completed in 33 milliseconds