You are on page 1of 1

global class Access_Example {

global Integer aval;

public Integer bval;

protected Integer cval;

private Integer dval;

public void show(){

System.debug('Aval:'+aval);

System.debug('Bval:'+bval);

System.debug('CVal:'+cval);

System.debug('DVal:'+dval);

You might also like