| ctext index |
|
| Name | getAllHyponyms ( ) |
| Examples | size(600,600);
CWordnet wordnet = new CWordnet(this);
int yPos = 20;
String[] hypos = wordnet.getAllHyponyms("cat", "n");
for (int i = 0; i < hypos.length; i++)
new CText(this, hypos[i], width/2, yPos+=13); |
| Description | Returns an unordered String[] of hyponym-synsets (each a colon-delimited String), or null if not found |
| Syntax | getAllHyponyms(word, posStr); getAllHyponyms(id); |
| Returns | None |
| Usage | Web & Application |
| Related | |