diff -r 67129b9360d2 -r a5c854a00679 jdk/src/share/classes/javax/swing/undo/StateEditable.java --- a/jdk/src/share/classes/javax/swing/undo/StateEditable.java Fri May 16 17:41:47 2014 +0400 +++ b/jdk/src/share/classes/javax/swing/undo/StateEditable.java Fri May 16 17:45:35 2014 +0400 @@ -43,12 +43,16 @@ /** * Upon receiving this message the receiver should place any relevant * state into state. + * + * @param state Hashtable object to store the state */ public void storeState(Hashtable state); /** * Upon receiving this message the receiver should extract any relevant * state out of state. + * + * @param state Hashtable object to restore the state from it */ public void restoreState(Hashtable state); } // End of interface StateEditable