1 18 19 package de.gulden.framework.amoda.generic.core; 20 21 import de.gulden.framework.amoda.generic.metadata.*; 22 import de.gulden.framework.amoda.generic.option.*; 23 import de.gulden.framework.amoda.model.behaviour.*; 24 import java.util.*; 25 26 32 public class UndoStack { 33 34 38 public void clear() { 39 } 41 42 public void push(CommandUndoable command) { 43 } 45 46 public CommandUndoable pop() { 47 return null; 49 } 50 51 } | Popular Tags |