org.jungrapht.visualization.layout.algorithms.util.AfterRunnable Maven / Gradle / Ivy
The newest version!
package org.jungrapht.visualization.layout.algorithms.util;
/** Used to cause a LayoutAlgorithm to call a Runnable once it has completed */
public interface AfterRunnable {
default void setAfter(Runnable after) {}
default void runAfter() {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy