jdk/src/share/classes/javax/swing/undo/CompoundEdit.java
changeset 23697 e556a715949f
parent 5506 202f599c92aa
child 24495 a5c854a00679
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    30  * A concrete subclass of AbstractUndoableEdit, used to assemble little
    30  * A concrete subclass of AbstractUndoableEdit, used to assemble little
    31  * UndoableEdits into great big ones.
    31  * UndoableEdits into great big ones.
    32  *
    32  *
    33  * @author Ray Ryan
    33  * @author Ray Ryan
    34  */
    34  */
       
    35 @SuppressWarnings("serial") // Same-version serialization only
    35 public class CompoundEdit extends AbstractUndoableEdit {
    36 public class CompoundEdit extends AbstractUndoableEdit {
    36     /**
    37     /**
    37      * True if this edit has never received <code>end</code>.
    38      * True if this edit has never received <code>end</code>.
    38      */
    39      */
    39     boolean inProgress;
    40     boolean inProgress;