< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/XSAttributeDeclaration.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.

@@ -53,10 +52,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

@@ -65,10 +65,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.

@@ -84,10 +85,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

@@ -102,10 +104,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 >