summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/ItemInfoWithIcon.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/ItemInfoWithIcon.java')
-rw-r--r--src/com/android/launcher3/ItemInfoWithIcon.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/launcher3/ItemInfoWithIcon.java b/src/com/android/launcher3/ItemInfoWithIcon.java
index e29f92713..1550bb080 100644
--- a/src/com/android/launcher3/ItemInfoWithIcon.java
+++ b/src/com/android/launcher3/ItemInfoWithIcon.java
@@ -27,6 +27,8 @@ import com.android.launcher3.icons.BitmapInfo;
*/
public abstract class ItemInfoWithIcon extends ItemInfo {
+ public static final String TAG = "ItemInfoDebug";
+
/**
* A bitmap version of the application icon.
*/
@@ -126,4 +128,8 @@ public abstract class ItemInfoWithIcon extends ItemInfo {
iconColor = info.color;
}
+ /**
+ * @return a copy of this
+ */
+ public abstract ItemInfoWithIcon clone();
}