jdk/src/java.desktop/share/classes/sun/java2d/StateTrackableDelegate.java
changeset 32865 f9cb6e427f9e
parent 26037 508779ce6619
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    42     /**
    42     /**
    43      * The {@code UNTRACKABLE_DELEGATE} provides an implementation
    43      * The {@code UNTRACKABLE_DELEGATE} provides an implementation
    44      * of the StateTrackable interface that is permanently in the
    44      * of the StateTrackable interface that is permanently in the
    45      * {@link State#UNTRACKABLE UNTRACKABLE} state.
    45      * {@link State#UNTRACKABLE UNTRACKABLE} state.
    46      */
    46      */
    47     public final static StateTrackableDelegate UNTRACKABLE_DELEGATE =
    47     public static final StateTrackableDelegate UNTRACKABLE_DELEGATE =
    48         new StateTrackableDelegate(UNTRACKABLE);
    48         new StateTrackableDelegate(UNTRACKABLE);
    49 
    49 
    50     /**
    50     /**
    51      * The {@code IMMUTABLE_DELEGATE} provides an implementation
    51      * The {@code IMMUTABLE_DELEGATE} provides an implementation
    52      * of the StateTrackable interface that is permanently in the
    52      * of the StateTrackable interface that is permanently in the
    53      * {@link State#IMMUTABLE IMMUTABLE} state.
    53      * {@link State#IMMUTABLE IMMUTABLE} state.
    54      */
    54      */
    55     public final static StateTrackableDelegate IMMUTABLE_DELEGATE =
    55     public static final StateTrackableDelegate IMMUTABLE_DELEGATE =
    56         new StateTrackableDelegate(IMMUTABLE);
    56         new StateTrackableDelegate(IMMUTABLE);
    57 
    57 
    58     /**
    58     /**
    59      * Returns a {@code StateTrackableDelegate} instance with the
    59      * Returns a {@code StateTrackableDelegate} instance with the
    60      * specified initial {@link State State}.
    60      * specified initial {@link State State}.