无法在 NLGElement 上应用方法 addComplement
Can't apply method addComplement on an NLGElement
我从 this documentation 中看到我们可以在 NLGElement 上应用方法 addComplement,但是当我尝试此代码时:
Lexicon lexicon= new XMLLexicon();
NLGFactory factory = new NLGFactory(lexicon);
NLGElement s1 = factory.createSentence("my dog is happy");
s1.addComplement("with me");
我收到以下错误:
The method addComplement() is undefined for the type NLGElement
所以如果有其他替代方法可以在 NLGElement 上添加补码,任何人都可以解释并提供帮助
看来文档有误,所以我想做的是不可能的。
但是还有一种可能是补码 from this post
我从 this documentation 中看到我们可以在 NLGElement 上应用方法 addComplement,但是当我尝试此代码时:
Lexicon lexicon= new XMLLexicon();
NLGFactory factory = new NLGFactory(lexicon);
NLGElement s1 = factory.createSentence("my dog is happy");
s1.addComplement("with me");
我收到以下错误:
The method addComplement() is undefined for the type NLGElement
所以如果有其他替代方法可以在 NLGElement 上添加补码,任何人都可以解释并提供帮助
看来文档有误,所以我想做的是不可能的。 但是还有一种可能是补码 from this post