瀏覽代碼

more javadoc

Eren Yilmaz 6 年之前
父節點
當前提交
2e834c61ca
共有 1 個文件被更改,包括 9 次插入1 次删除
  1. 9 1
      src/Algorithms/Animated/BackwardAction.java

+ 9 - 1
src/Algorithms/Animated/BackwardAction.java

@@ -1,6 +1,14 @@
 package Algorithms.Animated;
 
+/**
+ * An action that reverts another Action.
+ * For example this is used to go one step backwards in the node placement algorithm.
+ * @author kolja
+ *
+ */
 public interface BackwardAction {
-
+    /**
+     * Undo another action.
+     */
 	public void reverse();
 }