jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/runtime/RuntimeTypeInfoSet.java
changeset 22427 1f8304cd1d53
parent 16791 fe5141eabb0e
child 22679 d785acd84a14
equal deleted inserted replaced
21508:3dd9732b1703 22427:1f8304cd1d53
    31 import java.util.Map;
    31 import java.util.Map;
    32 
    32 
    33 import javax.xml.namespace.QName;
    33 import javax.xml.namespace.QName;
    34 
    34 
    35 import com.sun.xml.internal.bind.v2.model.core.TypeInfoSet;
    35 import com.sun.xml.internal.bind.v2.model.core.TypeInfoSet;
    36 import com.sun.xml.internal.bind.v2.model.nav.ReflectionNavigator;
       
    37 
    36 
    38 /**
    37 /**
    39  * {@link TypeInfoSet} refined for runtime.
    38  * {@link TypeInfoSet} refined for runtime.
    40  *
    39  *
    41  * @author Kohsuke Kawaguchi
    40  * @author Kohsuke Kawaguchi
    49     RuntimeNonElement getAnyTypeInfo();
    48     RuntimeNonElement getAnyTypeInfo();
    50     RuntimeNonElement getClassInfo( Class type );
    49     RuntimeNonElement getClassInfo( Class type );
    51     RuntimeElementInfo getElementInfo( Class scope, QName name );
    50     RuntimeElementInfo getElementInfo( Class scope, QName name );
    52     Map<QName,? extends RuntimeElementInfo> getElementMappings( Class scope );
    51     Map<QName,? extends RuntimeElementInfo> getElementMappings( Class scope );
    53     Iterable<? extends RuntimeElementInfo> getAllElements();
    52     Iterable<? extends RuntimeElementInfo> getAllElements();
    54     ReflectionNavigator getNavigator();
       
    55 }
    53 }