13 lines
304 B
Java
13 lines
304 B
Java
package com.de22.javabytecode;
|
|
|
|
/**
|
|
* Copyright Declarative Engineering LLC 2008<p>
|
|
* Sample code used by the byte code system to test reverse engineering.
|
|
*/
|
|
public class SampleB {
|
|
public static void main(String[] args) {
|
|
ISampleA sample = new ChildOfA();
|
|
System.out.println(sample.perform());
|
|
}
|
|
}
|