The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package org.maltparser.core.syntaxgraph;

import org.maltparser.core.exception.MaltChainedException;
/**
*
*
* @author Johan Hall
*/
public interface Structure {
	/**
	 * Resets the structure.
	 * 
	 * @throws MaltChainedException
	 */
	public void clear() throws MaltChainedException;
}