aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/apicheck/Intermediate.java.txt
blob: fea5c4fb36af93ffd5b5c1d83cb465ba6e6b884f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test.pkg;

import android.app.Activity;
import android.widget.Button;

/** Local activity */
public abstract class Intermediate extends Activity {

	/** Local Custom view */
	public abstract static class IntermediateCustomV extends Button {
		public IntermediateCustomV() {
			super(null);
		}
	}
}