JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
IndexedButton.java
Go to the documentation of this file.
1 package jarmos.app.misc.rb;
2 
3 import android.content.Context;
4 import android.widget.Button;
5 
15 public class IndexedButton extends Button {
16 
17  private int index;
18 
19  public IndexedButton(Context c) {
20  super(c);
21  index = 0;
22  }
23 
24  public void setIndex(int i) {
25  index = i;
26  }
27 
28  public int getIndex() {
29  return index;
30  }
31 }
Utility class for a button that has an index attached.