Пример #1
0
 void setConvolutionChoices(String[] s) {
   c = new Choice();
   for (int i = 0; i < s.length; i++) {
     c.add(s[i]);
   }
   panel.add(c);
 }
Пример #2
0
 String getEffectName() {
   return c.getSelectedItem();
 }
Пример #3
0
 int getEffectIndex() {
   return c.getSelectedIndex();
 }