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