Searched defs:feature (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DXMLStructure.java42 * Indicates whether a specified feature is supported.
44 * @param feature the feature name (as an absolute URI)
45 * @return <code>true</code> if the specified feature is supported,
47 * @throws NullPointerException if <code>feature</code> is <code>null</code>
49 boolean isFeatureSupported(String feature); argument
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dom/
H A DDOMStructure.java81 public boolean isFeatureSupported(String feature) { argument
82 if (feature == null) {
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPlatform.c69 (JNIEnv *env, jclass clazz, jint feature) {
73 switch (feature) {
83 switch (feature) {
93 switch (feature) {
103 switch (feature) {
113 switch (feature) {
68 Java_com_sun_media_sound_Platform_nGetLibraryForFeature(JNIEnv *env, jclass clazz, jint feature) argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementation.java52 * Test if the DOM implementation implements a specific feature and
54 * @param feature The name of the feature to test.
55 * @param version This is the version number of the feature to test.
56 * @return <code>true</code> if the feature is implemented in the
59 public boolean hasFeature(String feature, argument
78 * support the feature "XML" and the language exposed through the
124 * <code>"XML"</code> feature but a non-null namespace URI was
130 * support the feature "XML" and the language exposed through the
141 * specialized APIs of the specified feature an
162 getFeature(String feature, String version) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMStructure.java41 public final boolean isFeatureSupported(String feature) { argument
42 if (feature == null) {
H A DApacheCanonicalizer.java255 public final boolean isFeatureSupported(String feature) { argument
256 if (feature == null) {
H A DApacheTransform.java196 public final boolean isFeatureSupported(String feature) { argument
197 if (feature == null) {
H A DDOMKeyInfoFactory.java99 public boolean isFeatureSupported(String feature) { argument
100 if (feature == null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSBinding.java106 boolean isFeatureEnabled(@NotNull Class<? extends WebServiceFeature> feature); argument
112 * The type of the feature to retrieve.
114 * If the feature is present and enabled, return a non-null instance.
H A DWSFeatureList.java43 boolean isEnabled(@NotNull Class<? extends WebServiceFeature> feature); argument
49 * The type of the feature to retrieve.
51 * If the feature is present and enabled, return a non-null instance.
63 * i.e, if a feature is set already on binding through someother API
67 * @param reportConflicts If true, checks if the feature setting in WSDL (wsdl extension or
68 * policy configuration) colflicts with feature setting in Deployed Service and
75 * i.e, if a feature is set already on binding through someother API
79 * @param reportConflicts If true, checks if the feature setting in WSDL (wsdl extension or
80 * policy configuration) colflicts with feature setting in Deployed Service and
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLFeaturedObject.java52 * Gets the feature list associated with this object.
60 void addFeature(@NotNull WebServiceFeature feature); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMImplementationImpl.java71 * Test if the DOM implementation supports a specific "feature" --
74 * @param feature The package name of the feature to test.
78 * @param version The version number of the feature being tested.
83 * specified feature and version.
85 public boolean hasFeature(String feature, String version) { argument
87 boolean result = super.hasFeature(feature, version);
90 if (feature.startsWith("+")) {
91 feature = feature
[all...]
H A DPSVIDOMImplementationImpl.java67 * Test if the DOM implementation supports a specific "feature" --
70 * @param feature The package name of the feature to test.
74 * @param version The version number of the feature being tested.
79 * feature and version.
81 public boolean hasFeature(String feature, String version) { argument
82 return super.hasFeature(feature, version) ||
83 feature.equalsIgnoreCase("psvi");
H A DCoreDOMImplementationImpl.java93 * Test if the DOM implementation supports a specific "feature" --
96 * @param feature The package name of the feature to test.
100 * @param version The version number of the feature being tested.
105 * feature and version.
107 public boolean hasFeature(String feature, String version) { argument
113 // if a plus sign "+" is prepended to any feature name, implementations
114 // are considered in which the specified feature may not be directly
115 // castable DOMImplementation.getFeature(feature, version). Without a
117 if ((feature
282 getFeature(String feature, String version) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSImplementationImpl.java68 * Test if the DOM implementation supports a specific "feature" --
71 * @param feature The package name of the feature to test.
75 * @param version The version number of the feature being tested.
80 * feature and version.
82 public boolean hasFeature(String feature, String version) { argument
84 return (feature.equalsIgnoreCase("XS-Loader") && (version == null || version.equals("1.0")) ||
85 super.hasFeature(feature, version));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DAbstractFeaturedObjectImpl.java47 public final void addFeature(WebServiceFeature feature) { argument
51 features.add(feature);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMImplementation.java54 public Object getFeature(String feature, String version) { argument
55 if (singleton.hasFeature(feature, version)) {
61 public boolean hasFeature(String feature, String version) { argument
63 return (feature.equalsIgnoreCase("Core") || feature.equalsIgnoreCase("XML")) &&
H A DDefaultNode.java118 public boolean isSupported(String feature, String version) { argument
207 public Object getFeature(String feature, String version){ argument
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java488 * Indicates whether a specified feature is supported.
490 * @param feature the feature name (as an absolute URI)
491 * @return <code>true</code> if the specified feature is supported,
493 * @throws NullPointerException if <code>feature</code> is <code>null</code>
495 public abstract boolean isFeatureSupported(String feature); argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DPlatform.java58 // features: the main native library jsound reports which feature is
220 private static boolean isFeatureLibLoaded(int feature) { argument
221 if (Printer.debug) Printer.debug("Platform: Checking for feature "+feature+"...");
222 int requiredLib = nGetLibraryForFeature(feature);
232 private native static int nGetLibraryForFeature(int feature); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DBindingImpl.java127 for(WebServiceFeature feature : features) {
128 if (feature instanceof BindingTypeFeature) {
129 BindingTypeFeature f = (BindingTypeFeature)feature;
151 public boolean isFeatureEnabled(@NotNull Class<? extends WebServiceFeature> feature){ argument
152 return features.isEnabled(feature);
H A DWebServiceFeatureList.java89 * Adds the corresponding features to the list for feature annotations(i.e
92 * @param annIt collection of annotations(that can have non-feature annotations)
96 WebServiceFeature feature = getFeature(ann);
97 if (feature != null) {
98 add(feature);
104 * Returns a corresponding feature for a feature annotation(i.e which has
107 * @return corresponding feature for the annotation
108 * null, if the annotation is nota feature annotation
135 * Reads {@link WebServiceFeatureAnnotation feature annotation
220 isEnabled(@otNull Class<? extends WebServiceFeature> feature) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMimeMultipartParser.java71 public MimeMultipartParser(InputStream in, String contentType, StreamingAttachmentFeature feature) { argument
77 message = (feature != null)
78 ? new MIMEMessage(in, boundary, feature.getConfig())
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileStore.java218 * Returns status to indicate if file system supports a given feature
220 FeatureStatus checkIfFeaturePresent(String feature) { argument
239 if (s.equals(feature)) {
244 if (s.equals(feature)) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java311 public Object getFeature(String feature, String version) { argument

Completed in 71 milliseconds

12