public class myTest1 extends Button{
private int index=0;
public myTest1(){
super();
}
public myTest1(String Lab){
super(Lab);
}
public myTest1(String Lab,int index){
super(Lab);
this.index=index;
}
public int getindex(){
return this.index;
}
public static void main(String[] args) {