langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Content.java
changeset 17564 c329fe11193d
parent 17560 9f6771abbd1a
child 19667 fdfce85627a9
equal deleted inserted replaced
17563:e8ddeb9bd17c 17564:c329fe11193d
    94      */
    94      */
    95     public boolean isValid() {
    95     public boolean isValid() {
    96         return !isEmpty();
    96         return !isEmpty();
    97     }
    97     }
    98 
    98 
       
    99     /**
       
   100      * Return the number of characters of plain text content in this object
       
   101      * (optional operation.)
       
   102      * @return the number of characters of plain text content in this
       
   103      */
    99     public int charCount() {
   104     public int charCount() {
   100         throw new UnsupportedOperationException();
   105         return 0;
   101     }
   106     }
   102 
   107 
   103     /**
   108     /**
   104      * Checks for null values.
   109      * Checks for null values.
   105      *
   110      *