Lines Matching defs:version

267    * @param version
271 public final boolean supports(String feature, String version)
273 return implementation.hasFeature(feature,version);
282 * @param version
288 public final boolean isSupported(String feature, String version)
290 return implementation.hasFeature(feature,version);
498 // Note that this uses the DOM-compatable version of the call
1523 * An attribute specifying, as part of the XML declaration, the version
1539 * An attribute specifying, as part of the XML declaration, the version
1543 * NEEDSDOC @param version
1545 public void setVersion(String version)
1576 public boolean hasFeature(String feature,String version)
1580 ("1.0".equals(version) || "2.0".equals(version)))
1587 * specialized APIs of the specified feature and version. The
1592 * @param version This is the version number of the feature to test. If
1593 * the version is <code>null</code> or the empty string, supporting
1594 * any version of the feature will cause the method to return an
1595 * object that supports at least one version of the feature.
1597 * the specified feature and version, if any, or <code>null</code> if
1607 public Object getFeature(String feature, String version) {
1610 //return hasFeature(feature, version) ? this : null;
1642 * specialized APIs of the specified feature and version. The
1646 * @param version This is the version number of the feature to test. If
1647 * the version is <code>null</code> or the empty string, supporting
1648 * any version of the feature will cause the method to return an
1649 * object that supports at least one version of the feature.
1651 * the specified feature and version, if any, or <code>null</code> if
1661 public Object getFeature(String feature, String version) {
1664 return isSupported(feature, version) ? this : null;