Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // if_salv_c_refresh.intf.abap
class if_salv_c_refresh {
static INTERNAL_TYPE = 'INTF';
static INTERNAL_NAME = 'IF_SALV_C_REFRESH';
static ATTRIBUTES = {"NONE": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
"SOFT": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
"FULL": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}};
static METHODS = {};
}
abap.Classes['IF_SALV_C_REFRESH'] = if_salv_c_refresh;
if_salv_c_refresh.if_salv_c_refresh$none = new abap.types.Integer({qualifiedName: "I"});
if_salv_c_refresh.if_salv_c_refresh$none.set(0);
if_salv_c_refresh.if_salv_c_refresh$soft = new abap.types.Integer({qualifiedName: "I"});
if_salv_c_refresh.if_salv_c_refresh$soft.set(1);
if_salv_c_refresh.if_salv_c_refresh$full = new abap.types.Integer({qualifiedName: "I"});
if_salv_c_refresh.if_salv_c_refresh$full.set(2);
export {if_salv_c_refresh}; |