Back to project page AndroSol.
The source code is released under:
MIT License
If you think the Android project AndroSol listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lib.cards.utilities; //from w w w . j av a2 s .c o m public interface Command { // Localized string describing command for undo menu. String getName(); // Does running this command result in the clearing of the undo stacks? boolean getClearsUndoStack(); // Action that can be done. boolean invoke(); // Re-invoke an action that has been undone. boolean reInvoke(); // Undo the above action. boolean undo(); }