Searched defs:features (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementationSource.java46 * implementations, based upon requested features and versions, as specified
57 * specified features.
58 * @param features A string that specifies which features and versions
71 * features, or <code>null</code> if this source has none.
73 public DOMImplementation getDOMImplementation(String features); argument
77 * specified features and versions, as specified in .
78 * @param features A string that specifies which features and versions
84 * features
86 getDOMImplementationList(String features) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dvm_version_linux_sparc.cpp52 int VM_Version::platform_features(int features) { argument
54 features = generic_v9_m;
58 features = niagara1_m;
61 return features;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMImplementationSourceImpl.java31 * Supply one the right implementation, based upon requested features. Each
46 * @param features A string that specifies which features are required.
50 * @return An implementation that has the desired features, or
53 public DOMImplementation getDOMImplementation(String features) { argument
57 if (testImpl(impl, features)) {
62 if (testImpl(impl, features)) {
71 * specified features and versions, as specified in .
72 * @param features A string that specifies which features an
80 getDOMImplementationList(String features) argument
95 testImpl(DOMImplementation impl, String features) argument
[all...]
H A DDOMXSImplementationSourceImpl.java42 * @param features A string that specifies which features are required.
46 * @return An implementation that has the desired features, or
49 public DOMImplementation getDOMImplementation(String features) { argument
50 DOMImplementation impl = super.getDOMImplementation(features);
56 if (testImpl(impl, features)) {
61 if (testImpl(impl, features)) {
70 * specified features and versions, as specified in .
71 * @param features A string that specifies which features an
79 getDOMImplementationList(String features) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dvm_version_sparc.cpp302 int features = platform_features(unknown_m); // platform_features() is os_arch specific local
304 if (features == unknown_m) {
305 features = generic_v9_m;
309 assert(is_T_family(features) == is_niagara(features), "Niagara should be T series");
311 if (is_T_family(features)) {
315 features |= T_family_m;
318 if (is_T_family(features) && !FLAG_IS_DEFAULT(UseNiagaraInstrs)) {
320 features &= ~(T_family_m | T1_model_m);
326 return features;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSFeatureList.java57 * Obtains all the features in the array.
62 * Merges the extra features that are not already set on binding.
66 * @param features Web Service features that need to be merged with already configured features.
71 void mergeFeatures(@NotNull WebServiceFeature[] features, boolean reportConflicts); argument
74 * Merges the extra features that are not already set on binding.
78 * @param features Web Service features that need to be merged with already configured features
83 mergeFeatures(@otNull Iterable<WebServiceFeature> features, boolean reportConflicts) argument
[all...]
H A DWSService.java76 public abstract <T> T getPort(WSEndpointReference epr, Class<T> portInterface, WebServiceFeature... features); argument
82 public abstract <T> Dispatch<T> createDispatch(QName portName, WSEndpointReference wsepr, Class<T> aClass, Service.Mode mode, WebServiceFeature... features); argument
88 public abstract Dispatch<Object> createDispatch(QName portName, WSEndpointReference wsepr, JAXBContext jaxbContext, Service.Mode mode, WebServiceFeature... features); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DSOAPSEIModel.java44 public SOAPSEIModel(WebServiceFeature[] features) { argument
45 super(features);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpointReference.java154 * @param features An array of <code>WebServiceFeatures</code> to configure on the
155 * proxy. Supported features not in the <code>features
179 WebServiceFeature... features) {
181 features);
178 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
H A DEndpoint.java106 * service features. If there is a binding specified via a BindingType
116 * @param features A list of WebServiceFeature to configure on the
117 * endpoint. Supported features not in the <code>features
125 public static Endpoint create(Object implementor, WebServiceFeature ... features) { argument
126 return create(null, implementor, features);
152 * implementor object, and web service features.
164 * @param features A list of WebServiceFeature to configure on the
165 * endpoint. Supported features not in the <code>features
171 create(String bindingId, Object implementor, WebServiceFeature ... features) argument
271 publish(String address, Object implementor, WebServiceFeature ... features) argument
[all...]
H A DService.java82 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { argument
85 this.getClass(), features);
133 * @param features A list of WebServiceFeatures to configure on the
134 * proxy. Supported features not in the <code>features
159 Class<T> serviceEndpointInterface, WebServiceFeature... features) {
160 return delegate.getPort(portName, serviceEndpointInterface, features);
202 * @param features A list of WebServiceFeatures to configure on the
203 * proxy. Supported features not in the <code>features
158 getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
224 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
302 getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
386 createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
461 createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
519 createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
592 createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
727 create( java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) argument
757 create(QName serviceName, WebServiceFeature ... features) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DAbstractFeaturedObjectImpl.java38 protected WebServiceFeatureList features; field in class:AbstractFeaturedObjectImpl
48 if (features == null)
49 features = new WebServiceFeatureList();
51 features.add(feature);
55 if(features == null)
57 return features;
61 if (features != null) {
62 for (WebServiceFeature f : features) {
73 if(features==null)
76 return features
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DDocumentBuilderFactoryImpl.java45 private Hashtable features; field in class:DocumentBuilderFactoryImpl
76 return new DocumentBuilderImpl(this, attributes, features, fSecureProcess);
113 new DocumentBuilderImpl(this, attributes, features);
140 new DocumentBuilderImpl(this, attributes, features).getDOMParser();
176 // See if it's in the features Hashtable
177 if (features != null) {
178 Object val = features.get(name);
184 DOMParser domParser = new DocumentBuilderImpl(this, attributes, features).getDOMParser();
194 if (features == null) {
195 features
[all...]
H A DSAXParserFactoryImpl.java62 private Hashtable features; field in class:SAXParserFactoryImpl
81 saxParserImpl = new SAXParserImpl(this, features, fSecureProcess);
98 saxParserImpl = new SAXParserImpl(this, features);
131 // XXX This is ugly. We have to collect the features and then
132 // later create an XMLReader to verify the features.
138 features.remove(name);
141 features.remove(name);
190 if (features == null) {
191 features = new Hashtable();
193 features
[all...]
/openjdk7/jaxp/src/org/w3c/dom/bootstrap/
H A DDOMImplementationRegistry.java196 * features, or <code>null</code> if none is found.
198 * @param features
199 * A string that specifies which features are required. This is
203 * @return An implementation that has the desired features,
206 public DOMImplementation getDOMImplementation(final String features) { argument
212 DOMImplementation impl = source.getDOMImplementation(features);
222 * desired features.
224 * @param features
225 * A string that specifies which features are required. This is
229 * @return A list of DOMImplementations that support the desired features
231 getDOMImplementationList(final String features) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXManager.java39 HashMap features = new HashMap(); field in class:StAXManager
65 features.putAll(properties);
69 return features ;
74 features.put(XMLInputFactory.IS_NAMESPACE_AWARE, Boolean.TRUE);
75 features.put(XMLInputFactory.IS_VALIDATING, Boolean.FALSE);
76 features.put(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, Boolean.TRUE);
77 features.put(XMLInputFactory.IS_SUPPORTING_EXTERNAL_ENTITIES, Boolean.TRUE);
78 features.put(XMLInputFactory.IS_COALESCING, Boolean.FALSE);
79 features.put(XMLInputFactory.SUPPORT_DTD, Boolean.FALSE);
80 features
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DMonitorRootService.java176 @Description("Binding features")
177 public @NotNull WSFeatureList features() { method in class:MonitorRootService
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHanLayoutEngine.cpp64 #define features (loclFeatureMask) macro
100 // flag from the language tag lookups, so we can use these features
103 glyphStorage.setAuxData(i, features, success);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DServiceDelegate.java99 * @param features A list of WebServiceFeatures to configure on the
100 * proxy. Supported features not in the <code>features
125 Class<T> serviceEndpointInterface, WebServiceFeature... features);
171 * @param features A list of <code>WebServiceFeatures</code> to configure on the
172 * proxy. Supported features not in the <code>features
200 Class<T> serviceEndpointInterface, WebServiceFeature... features);
239 * @param features An array of <code>WebServiceFeatures</code> to configure on the
240 * proxy. Supported features no
124 getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
199 getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
261 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
339 createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
411 createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
467 createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
537 createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
[all...]
H A DProvider.java192 * @param features Web Service features that must be configured on
201 QName serviceName, Class<? extends Service> serviceClass, WebServiceFeature ... features) {
284 * @param features A list of WebServiceFeatures to configure on the
285 * proxy. Supported features not in the <code>features
311 WebServiceFeature... features);
454 * address, implementation object and web service features.
466 * @param features A list of WebServiceFeatures to configure on the
467 * endpoint. Supported features no
199 createServiceDelegate( java.net.URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass, WebServiceFeature ... features) argument
309 getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
472 createAndPublishEndpoint(String address, Object implementor, WebServiceFeature ... features) argument
493 createEndpoint(String bindingId, Object implementor, WebServiceFeature ... features) argument
516 createEndpoint(String bindingId, Class<?> implementorClass, Invoker invoker, WebServiceFeature ... features) argument
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp44 static void do_sysinfo(int si, const char* string, int* features, int mask) { argument
59 *features |= mask;
66 int VM_Version::platform_features(int features) { argument
72 do_sysinfo(SI_ARCHITECTURE_32, "sparc", &features, v8_instructions_m);
75 do_sysinfo(SI_ARCHITECTURE_64, "sparcv9", &features, generic_v9_m);
87 if (av & AV_SPARC_MUL32) features |= hardware_mul32_m;
88 if (av & AV_SPARC_DIV32) features |= hardware_div32_m;
89 if (av & AV_SPARC_FSMULD) features |= hardware_fsmuld_m;
90 if (av & AV_SPARC_V8PLUS) features |= v9_instructions_m;
91 if (av & AV_SPARC_POPC) features |
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DBindingImpl.java67 protected final WebServiceFeatureList features = new WebServiceFeatureList(); field in class:BindingImpl
103 if (features.isEnabled(AddressingFeature.class))
105 else if (features.isEnabled(MemberSubmissionAddressingFeature.class))
125 public static BindingImpl create(@NotNull BindingID bindingId, WebServiceFeature[] features) { argument
126 // Override the BindingID from the features
127 for(WebServiceFeature feature : features) {
136 return new SOAPBindingImpl(bindingId, features);
148 return features.get(featureType);
152 return features.isEnabled(feature);
157 return features;
[all...]
H A DSOAPBindingImpl.java77 * @param features
78 * These features have a precedence over
79 * {@link BindingID#createBuiltinFeatureList() the implicit features}
82 SOAPBindingImpl(BindingID bindingId, WebServiceFeature... features) { argument
90 setFeatures(features);
91 this.features.addAll(bindingId.createBuiltinFeatureList());
H A DWebServiceFeatureList.java58 * pertaining to web service features.
74 public WebServiceFeatureList(@NotNull WebServiceFeature... features) { argument
75 if (features != null)
76 for (WebServiceFeature f : features) {
89 * Adds the corresponding features to the list for feature annotations(i.e
246 * Adds features to the list if it's not already added.
254 * Merges the extra features that are not already set on binding.
258 * @param features Web Service features that need to be merged with already configured features
263 mergeFeatures(@otNull Iterable<WebServiceFeature> features, boolean reportConflicts) argument
276 mergeFeatures(WebServiceFeature[] features, boolean reportConflicts) argument
297 getFeature(@otNull WebServiceFeature[] features, @NotNull Class<F> featureType) argument
309 private final Stack<WebServiceFeature> features = new Stack<WebServiceFeature>(); field in class:WebServiceFeatureList.MergedFeatures
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java100 WebServiceFeature ... features) {
101 if (features.length > 0) {
102 throw new WebServiceException("Doesn't support any Service specific features");
117 public Endpoint createEndpoint(String bindingId, Object implementor, WebServiceFeature... features) { argument
120 implementor, features);
123 public Endpoint createAndPublishEndpoint(String address, Object implementor, WebServiceFeature... features) { argument
125 BindingID.parse(implementor.getClass()), implementor, features);
130 public Endpoint createEndpoint(String bindingId, Class implementorClass, Invoker invoker, WebServiceFeature... features) { argument
133 implementorClass, invoker, features);
99 createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass, WebServiceFeature ... features) argument

Completed in 3317 milliseconds

12