/openjdk7/jdk/src/share/classes/javax/xml/crypto/ |
H A D | XMLStructure.java | 42 * 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 D | DOMStructure.java | 81 public boolean isFeatureSupported(String feature) { argument 82 if (feature == null) {
|
/openjdk7/jdk/src/share/native/com/sun/media/sound/ |
H A D | Platform.c | 69 (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 D | DOMImplementation.java | 52 * 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 D | DOMStructure.java | 41 public final boolean isFeatureSupported(String feature) { argument 42 if (feature == null) {
|
H A D | ApacheCanonicalizer.java | 255 public final boolean isFeatureSupported(String feature) { argument 256 if (feature == null) {
|
H A D | ApacheTransform.java | 196 public final boolean isFeatureSupported(String feature) { argument 197 if (feature == null) {
|
H A D | DOMKeyInfoFactory.java | 99 public boolean isFeatureSupported(String feature) { argument 100 if (feature == null) {
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/ |
H A D | WSBinding.java | 106 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 D | WSFeatureList.java | 43 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 D | WSDLFeaturedObject.java | 52 * 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 D | DOMImplementationImpl.java | 71 * 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 D | PSVIDOMImplementationImpl.java | 67 * 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 D | CoreDOMImplementationImpl.java | 93 * 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 D | XSImplementationImpl.java | 68 * 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 D | AbstractFeaturedObjectImpl.java | 47 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 D | SchemaDOMImplementation.java | 54 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 D | DefaultNode.java | 118 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 D | KeyInfoFactory.java | 488 * 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 D | Platform.java | 58 // 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 D | BindingImpl.java | 127 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 D | WebServiceFeatureList.java | 89 * 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 D | MimeMultipartParser.java | 71 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 D | UnixFileStore.java | 218 * 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 D | XPathNamespaceImpl.java | 311 public Object getFeature(String feature, String version) { argument
|