1 package org.glassbox.graphview;
2
3 import de.fzi.wim.guibase.graphview.graph.*;
4
5 public interface OffScreenLayoutNotify {
6 /***
7 Notify the object that a new layout as been calculated and can be applied.
8 */
9 public void notifyNewLayoutReady(OffScreenLayoutStrategy layout);
10 /***
11 Notify the object that a new layout has been requested but a recalculation was not necessary.
12 */
13 public void notifyLayoutUnchanged();
14 }