< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/XSElementDeclaration.java

Print this page

        

@@ -1,8 +1,7 @@
 /*
- * reserved comment block
- * DO NOT REMOVE OR ALTER!
+ * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
  */
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.

@@ -54,10 +53,11 @@
      * [Value constraint]: the constraint value with respect to the [type
      * definition], otherwise <code>null</code>.
      *
      * @deprecated Use getValueConstraintValue().getNormalizedValue() instead
      */
+    @Deprecated
     public String getConstraintValue();
 
     /**
      * Value Constraint: Binding specific actual constraint value or
      * <code>null</code> if the value is in error or there is no value

@@ -66,10 +66,11 @@
      *   NOT_SUPPORTED_ERR: Raised if the implementation does not support this
      *   method.
      *
      * @deprecated Use getValueConstraintValue().getActualValue() instead
      */
+    @Deprecated
     public Object getActualVC()
                                             throws XSException;
 
     /**
      * The actual constraint value built-in datatype, e.g.

@@ -85,10 +86,11 @@
      *   NOT_SUPPORTED_ERR: Raised if the implementation does not support this
      *   method.
      *
      * @deprecated Use getValueConstraintValue().getActualValueType() instead
      */
+    @Deprecated
     public short getActualVCType()
                                             throws XSException;
 
     /**
      * In the case the actual constraint value represents a list, i.e. the

@@ -103,10 +105,11 @@
      *   NOT_SUPPORTED_ERR: Raised if the implementation does not support this
      *   method.
      *
      * @deprecated Use getValueConstraintValue().getListValueTypes() instead
      */
+    @Deprecated
     public ShortList getItemValueTypes()
                                             throws XSException;
 
     /**
      * The actual value of the default or fixed value constraint.
< prev index next >