summaryrefslogtreecommitdiffstats
path: root/tests/068-classloader/src/DoubledImplement.java
blob: 5568a4382116e2ef0aa2f08d58439967ab232185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2008 The Android Open Source Project

/**
 * Doubled sub-class, form #1.
 */
class DoubledImplement implements ICommon {
    public DoubledImplement() {
        System.out.println("Ctor: doubled implement, type 1");
    }

    public DoubledImplement getDoubledInstance() {
        return new DoubledImplement();
    }

    public void one() {
        System.out.println("DoubledImplement one");
    }
}