import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class STEP
{
	 private static String bsd;
     private static int stepd;
     private static int stepnd;
     private static int steppow;



	public STEP(String bsd,int stepd,int steppow,int stepnd)
	{  this.bsd=bsd;
	   this.stepd=stepd;
	   this.steppow=steppow;
	   this.stepnd=stepnd;

		}
   public  String getString()
   {return this.bsd;}
      public  int  getintd()
   {return this.stepd;}
    public  int  getintpow()
   {return this.steppow;}
    public  int  getintnd()
   {return this.stepnd;}

     static STEP[] step0 = new STEP[3];
   step0 [0] =new STEP("TEXT1",0,1,0);
   step0 [1] =new STEP("TEXT1",1,1,0);
   step0 [2] =new STEP("TEXT1",1,1,1);
   }