001 package org.maltparser.core.syntaxgraph; 002 003 import org.maltparser.core.exception.MaltChainedException; 004 /** 005 * 006 * 007 * @author Johan Hall 008 */ 009 public interface Structure { 010 /** 011 * Resets the structure. 012 * 013 * @throws MaltChainedException 014 */ 015 public void clear() throws MaltChainedException; 016 }