// (c): Matti J. Katila package org.fenfire.fenpdf; import org.fenfire.view.buoy.AbstractMainNode2D; /** Context interface for new buoyoing architechture * that uses main node(s). */ public interface MainNode2DContext { /** Return the main node which has taken the latest event actions. * @see AbstractMainNode2D */ AbstractMainNode2D getMainNode2D(); /** ViewPort should animate fast. */ void setFastAnimation(); /** ViewPort should animate slowly. */ void setSlowAnimation(); }