HomeSort by relevance Sort by last modified time
    Searched refs:DoubledExtend (Results 1 - 4 of 4) sorted by null

  /art/test/068-classloader/src-ex/
DoubledExtend.java 20 public class DoubledExtend extends Base {
21 public DoubledExtend() {
26 public DoubledExtend getExtended() {
28 return new DoubledExtend();
32 return "DoubledExtend 2";
  /art/test/068-classloader/src/
DoubledExtend.java 20 public class DoubledExtend extends Base {
21 public DoubledExtend() {
26 public DoubledExtend getExtended() {
28 return new DoubledExtend();
32 return "DoubledExtend 1";
Base.java 23 public DoubledExtend getExtended() {
24 return new DoubledExtend();
27 public static String doStuff(DoubledExtend dt) {
Main.java 224 /* get the "alternate" version of DoubledExtend */
226 doubledExtendClass = loader.loadClass("DoubledExtend");
227 //System.out.println("+++ DoubledExtend is " + doubledExtendClass
250 DoubledExtend de = baseRef.getExtended();

Completed in 603 milliseconds