jdk/src/share/classes/java/text/FieldPosition.java
changeset 21278 ef8a3a2a72f2
parent 19054 a64012cb49d6
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
   134      * subclasses may not be aware of <code>Field</code> and rely on
   134      * subclasses may not be aware of <code>Field</code> and rely on
   135      * <code>fieldID</code>. If the field has no corresponding integer
   135      * <code>fieldID</code>. If the field has no corresponding integer
   136      * constant, <code>fieldID</code> should be -1.
   136      * constant, <code>fieldID</code> should be -1.
   137      *
   137      *
   138      * @param attribute Format.Field constant identifying a field
   138      * @param attribute Format.Field constant identifying a field
   139      * @param fieldID integer constantce identifying a field
   139      * @param fieldID integer constant identifying a field
   140      * @since 1.4
   140      * @since 1.4
   141      */
   141      */
   142     public FieldPosition(Format.Field attribute, int fieldID) {
   142     public FieldPosition(Format.Field attribute, int fieldID) {
   143         this.attribute = attribute;
   143         this.attribute = attribute;
   144         this.field = fieldID;
   144         this.field = fieldID;