Source code: javax/microedition/lcdui/Choice.java
1 /*
2 * MicroEmulator
3 * Copyright (C) 2001 Bartek Teodorczyk <barteo@it.pl>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 package javax.microedition.lcdui;
21
22
23 public interface Choice {
24
25 static final int EXCLUSIVE = 1;
26 static final int MULTIPLE = 2;
27 static final int IMPLICIT = 3;
28
29
30 int append(String stringPart, Image imagePart);
31
32 void delete(int elementNum);
33
34 Image getImage(int elementNum);
35
36 int getSelectedFlags(boolean[] selectedArray_return);
37
38 int getSelectedIndex();
39
40 String getString(int elementNum);
41
42 void insert(int elementNum, String stringPart, Image imagePart);
43
44 boolean isSelected(int elementNum);
45
46 void set(int elementNum, String stringPart, Image imagePart);
47
48 void setSelectedFlags(boolean[] selectedArray);
49
50 void setSelectedIndex(int elementNum, boolean selected);
51
52 int size();
53
54 }
55