コード例 #1
0
 public Paint transform(E e) {
   if (pi.isPicked(e)) {
     return picked_paint;
   } else {
     return draw_paint;
   }
 }
コード例 #2
0
ファイル: DendrogramView.java プロジェクト: hardisty/geoviz
 @Override
 public Paint transform(V arg0) {
   if (pi.isPicked(arg0)) {
     return Color.yellow;
   } else if (kids.contains(arg0)) {
     return Color.green;
   } else {
     return Color.red;
   }
 }