difftastic/sample_files/apex_1.cls

15 lines
298 B
OpenEdge ABL

/**
* @description diffstatic test file
*/
public with sharing class MyClass extends OtherClass
implements MyInterface {
private static final Integer A_CONSTANT = 0;
public void doSomething(Object param1,
Object param2) {
System.debug('Hello world!');
}
}