Make FolderIcon.getFolder() public and add Folder.getContent().

Change-Id: I21ad8b8178acbde2759cd2dfcd015d91e00b7505
This commit is contained in:
Anjali Koppal
2014-03-10 19:18:43 -07:00
parent 9364986c83
commit f05545fcc2
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -303,6 +303,10 @@ public class Folder extends LinearLayout implements DragSource, View.OnClickList
return mFolderName;
}
public CellLayout getContent() {
return mContent;
}
/**
* We need to handle touch events to prevent them from falling through to the workspace below.
*/
+1 -1
View File
@@ -308,7 +308,7 @@ public class FolderIcon extends FrameLayout implements FolderListener {
}
}
Folder getFolder() {
public Folder getFolder() {
return mFolder;
}