aboutsummaryrefslogtreecommitdiff
path: root/testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java')
-rw-r--r--testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java b/testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java
deleted file mode 100644
index e557fdaa5..000000000
--- a/testapps/customPropAnimTest/src/com/android/custompropertyanimation/MyView.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.android.custompropertyanimation;
-
-import android.content.Context;
-import android.view.View;
-
-public class MyView extends View {
-
- float mFoo = 0;
-
- public MyView(Context context) {
- super(context);
- }
-
- public void setFoo(float foo) {
- System.out.println("foo = " + foo);
- mFoo = foo;
- }
-
- public float getFoo() {
- System.out.println("getFoo() returning " + mFoo);
- return mFoo;
- }
-
-}