Searched refs:PropertyInfo (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DNonElementRef.java50 PropertyInfo<T,C> getSource();
H A DClassInfo.java101 List<? extends PropertyInfo<T,C>> getProperties();
115 * for( PropertyInfo p : getProperties() ) {
125 * @see PropertyInfo#getName()
127 PropertyInfo<T,C> getProperty(String name);
H A DAttributePropertyInfo.java31 * Attribute {@link PropertyInfo}.
35 public interface AttributePropertyInfo<T,C> extends PropertyInfo<T,C>, NonElementRef<T,C> {
H A DMapPropertyInfo.java57 * I didn't like the idea of adding such a special-purpose {@link PropertyInfo} to a model.
66 public interface MapPropertyInfo<T,C> extends PropertyInfo<T,C> {
H A DValuePropertyInfo.java29 * Value {@link PropertyInfo}.
33 public interface ValuePropertyInfo<T,C> extends PropertyInfo<T,C>, NonElementRef<T,C> {
H A DElementPropertyInfo.java38 public interface ElementPropertyInfo<T,C> extends PropertyInfo<T,C> {
H A DReferencePropertyInfo.java34 * {@link PropertyInfo} that holds references to other {@link Element}s.
38 public interface ReferencePropertyInfo<T,C> extends PropertyInfo<T,C> {
H A DPropertyInfo.java52 public interface PropertyInfo<T,C> extends AnnotationSource { interface in inherits:AnnotationSource
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/runtime/
H A DRuntimePropertyInfo.java31 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
35 * {@link PropertyInfo} that exposes more information.
39 public interface RuntimePropertyInfo extends PropertyInfo<Type,Class> {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DPropertySeed.java30 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
34 * Exposes the core information that forms a {@link PropertyInfo}.
42 * @see PropertyInfo#getName()
H A DTypeRefImpl.java31 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
85 public PropertyInfo<TypeT,ClassDeclT> getSource() {
H A DSingleTypePropertyInfoImpl.java35 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
84 public PropertyInfo<T,C> getSource() {
H A DFieldPropertySeed.java31 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
35 * {@link PropertyInfo} implementation backed by a field.
H A DGetterSetterPropertySeed.java32 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
36 * {@link PropertyInfo} implementation backed by a getter and a setter.
H A DClassInfoImpl.java78 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
262 for (PropertyInfo<T,C> p : getProperties()) {
288 public List<? extends PropertyInfo<T,C>> getProperties() {
406 for (PropertyInfo p : getProperties()) {
413 public PropertyInfo<T,C> getProperty(String name) {
414 for( PropertyInfo<T,C> p: getProperties() ) {
1242 List<? extends PropertyInfo> props = getProperties();
H A DElementInfoImpl.java54 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
216 public PropertyInfo<T,C> getSource() {
H A DModelBuilder.java46 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
232 for( PropertyInfo<T,C> p : ci.getProperties() ) {
H A DPropertyInfoImpl.java50 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
59 * Default partial implementation for {@link PropertyInfo}.
64 implements PropertyInfo<T,C>, Locatable, Comparable<PropertyInfoImpl> /*by their names*/ {
240 * defined on many of the {@link PropertyInfo}-derived classes.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCTypeRef.java34 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
125 public PropertyInfo<NType, NClass> getSource() {
H A DCPropertyInfo.java46 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
57 public abstract class CPropertyInfo implements PropertyInfo<NType,NClass>, CCustomizable {
157 * {@link PropertyInfo#getName()}, and therefore it always
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DProperty.java36 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
100 * This method is only used when the corresponding {@link PropertyInfo#id()} is {@link ID#ID},
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DXmlSchemaGenerator.java74 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
235 for( PropertyInfo<T,C> p : clazz.getProperties()) {
551 * Process the given PropertyInfo looking for references to namespaces that
556 * @param p the PropertyInfo
558 private void processForeignNamespaces(PropertyInfo<T, C> p, int processingDepth) {
561 java.util.List<PropertyInfo> l = ((ClassInfo) t).getProperties();
562 for (PropertyInfo subp : l) {
892 for (PropertyInfo<T,C> p : c.getProperties()) {
955 for (PropertyInfo<T,C> p : c.getProperties()) {
972 for (PropertyInfo<
[all...]

Completed in 464 milliseconds