use of com.oracle.webservices.api.databinding.DatabindingMode in project metro-jax-ws by eclipse-ee4j.
the class JAXBWrapperAccessorTest method testDatabindingModeAnnotationToFeature.
public void testDatabindingModeAnnotationToFeature() throws Exception {
DatabindingMode a = SEB.class.getAnnotation(DatabindingMode.class);
DatabindingModeFeature f = (DatabindingModeFeature) WebServiceFeatureList.getFeature(a);
assertEquals(f.getMode(), a.value());
}
Aggregations