&ref(): File not found: "displayop.png" at page "フォーカス情報による可視化連動";
| 変数名 | 説明 |
| boolean focusKeywords[]; | 各キーワードのフォーカスのon, off |
| boolean focusSegments[]; | 各セグメントのフォーカスのon, off |
| boolean focusSentences[]; | 各文のフォーカスのon, off |
| int mainFocusKeyword, subFocusKeyword; | あるキーワードのフォーカス(第1,第2)(数値はキーワードID,フォーカスなしなら-1) |
| int mainFocusSentence, subFocusSentence; | ある文のフォーカス(第1,第2)(数値は文番号,フォーカスなしなら-1) |
| int mainFocusSegment, subFocusSegment; | あるセグメントのフォーカス(第1,第2)(数値はセグメント番号,フォーカスなしなら-1) |
| String mainFocusString, subFocusString; | ある文字列のフォーカス(第1,第2)(フォーカスなしなら"") |
| double mainFocusDouble, subFocusDouble; | ある実数のフォーカス(第1,第2)(フォーカスなしなら0.0) |
| int mainFocusInteger, subFocusInteger; | ある整数のフォーカス(第1,第2)(フォーカスなしなら0) |
例)public void mouseMoved(MouseEvent me)
{
text.focus.mainFocusSegment = touchSegmentNumber;
}
例)void drawForLinkage(Graphics2D g2)
{
if(text.focus.mainFocusSegment >= 0) {
g2.setColor(Color.red); drawNodeName(g2, text.focus.mainFocusSegment);
}
}
&ref(): File not found: "rendou.png" at page "フォーカス情報による可視化連動";