Hi Andreas,

Your help is very welcome!

I have checked out the trunk and run build compile / build run in the
src_new folder, but CTRL + Z / CTRL + Y does not provide the undo
functionality. Am I missing somthing?

You are missing the org.argouml.kernel.UndoEnabler class!
Please look at it, and modify its "enabled" member.

Regards,
Michiel


package org.argouml.kernel;


/**

* Control for enabling undo functionality. Remove once undo has acceptable

* support through all of GEF and ArgoUML.

*

* @author Bob Tarling

*/

public final class UndoEnabler {


/**

* Change this value to true to enable undo.

* Do not commit in this state.

* TODO: Implement!

*/

private static boolean enabled = false;


/**

* The constructor.

*/

private UndoEnabler() {

super();

}


/**

* @return <code>true</code> if undo is enabled.

*/

public static boolean isEnabled() {

return enabled;

}

}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to