001package org.biopax.paxtools.util;
002
003/**
004 * Interface for demarcating excise-able boundaries of the object graph.
005 * @author Ozgun Babur
006 */
007public @interface AutoComplete
008{
009        boolean forward() default true;
010        boolean backward() default false;
011}