/*************************************************************************/ /* */ /* Use of the link grammar parsing system is subject to the terms of the */ /* license set forth in the LICENSE file included with this software. */ /* This license allows free redistribution and use in source and binary */ /* forms, with or without modification, subject to certain conditions. */ /* */ /*************************************************************************/ package org.linkgrammar; import java.util.ArrayList; import java.util.Iterator; import java.util.List; /** * *
* Represents the result of parsing a piece of text. The result
* consists of some global meta information about the whole parse
* and a list of Linkage
s returned by the parser. The
* original parsed text is available as the text
attribute.
*