diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundButton.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundButton.java index c272f6a..8873a7c 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundButton.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundButton.java @@ -32,7 +32,7 @@ */ public class ForegroundButton extends Button { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundButton(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundEditText.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundEditText.java index 0be84d4..995cf18 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundEditText.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundEditText.java @@ -32,7 +32,7 @@ */ public class ForegroundEditText extends EditText { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundEditText(Context context) { this(context, null); @@ -161,4 +161,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundGridLayout.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundGridLayout.java index 722d70a..dae0935 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundGridLayout.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundGridLayout.java @@ -32,7 +32,7 @@ */ public class ForegroundGridLayout extends GridLayout { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundGridLayout(Context context) { this(context, null); @@ -160,4 +160,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundGridView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundGridView.java index 267601c..e633174 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundGridView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundGridView.java @@ -32,7 +32,7 @@ */ public class ForegroundGridView extends GridView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundGridView(Context context) { this(context, null); @@ -161,4 +161,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundHorizontalScrollView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundHorizontalScrollView.java index 6c3d145..dd18c1c 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundHorizontalScrollView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundHorizontalScrollView.java @@ -32,7 +32,7 @@ */ public class ForegroundHorizontalScrollView extends HorizontalScrollView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundHorizontalScrollView(Context context) { this(context, null); @@ -162,4 +162,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundImageButton.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundImageButton.java index abcf2ec..2bc8003 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundImageButton.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundImageButton.java @@ -32,7 +32,7 @@ */ public class ForegroundImageButton extends ImageButton { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundImageButton(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundImageView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundImageView.java index 16b8d17..74a272d 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundImageView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundImageView.java @@ -32,7 +32,7 @@ */ public class ForegroundImageView extends ImageView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundImageView(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundLinearLayout.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundLinearLayout.java index cad2f4d..7497fa4 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundLinearLayout.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundLinearLayout.java @@ -32,7 +32,7 @@ */ public class ForegroundLinearLayout extends LinearLayout { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundLinearLayout(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundListView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundListView.java index 35097a2..2abebbb 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundListView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundListView.java @@ -32,7 +32,7 @@ */ public class ForegroundListView extends ListView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundListView(Context context) { this(context, null); @@ -165,4 +165,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundRelativeLayout.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundRelativeLayout.java index eff2a3f..eafb065 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundRelativeLayout.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundRelativeLayout.java @@ -32,7 +32,7 @@ */ public class ForegroundRelativeLayout extends RelativeLayout { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundRelativeLayout(Context context) { this(context, null); @@ -164,4 +164,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundScrollView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundScrollView.java index 66d5341..3eb399f 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundScrollView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundScrollView.java @@ -32,7 +32,7 @@ */ public class ForegroundScrollView extends ScrollView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundScrollView(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundTextView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundTextView.java index 3e287d0..84a35bc 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundTextView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundTextView.java @@ -32,7 +32,7 @@ */ public class ForegroundTextView extends TextView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundTextView(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +} diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundViewImlp.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundViewImpl.java similarity index 98% rename from library/src/main/java/com/anttek/foreground/widget/ForegroundViewImlp.java rename to library/src/main/java/com/anttek/foreground/widget/ForegroundViewImpl.java index 3f5bfd7..b3297f5 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundViewImlp.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundViewImpl.java @@ -34,7 +34,7 @@ * Created by Bao Le Duc on 9/26/2015. * Impl of foreground view delegation */ - public class ForegroundViewImlp { + public class ForegroundViewImpl { private final View mTargetView; private Drawable mForeground; @@ -48,7 +48,7 @@ public class ForegroundViewImlp { boolean mForegroundBoundsChanged = false; - public ForegroundViewImlp(View targetView) { + public ForegroundViewImpl(View targetView) { this.mTargetView = targetView; } diff --git a/library/src/main/java/com/anttek/foreground/widget/ForegroundWebView.java b/library/src/main/java/com/anttek/foreground/widget/ForegroundWebView.java index 6685741..f24237c 100644 --- a/library/src/main/java/com/anttek/foreground/widget/ForegroundWebView.java +++ b/library/src/main/java/com/anttek/foreground/widget/ForegroundWebView.java @@ -32,7 +32,7 @@ */ public class ForegroundWebView extends WebView { - private final ForegroundViewImlp mImpl = new ForegroundViewImlp(this); + private final ForegroundViewImpl mImpl = new ForegroundViewImpl(this); public ForegroundWebView(Context context) { this(context, null); @@ -163,4 +163,4 @@ public boolean onTouchEvent(MotionEvent e) { } return super.onTouchEvent(e); } -} \ No newline at end of file +}