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

import android.content.Context;
import android.util.AttributeSet;
import android.widget.Button;

public class CustomView2 extends Button {
	public CustomView2(boolean foo,
			Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
	}
}