difftastic/sample_files/apex_2.cls

11 lines
279 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!');
}
}