OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Collapsible
(Results
1 - 2
of
2
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/
Collapser.java
24
*
collapsible
should implement the
Collapsible
interface. The class also contains a utility
45
public interface
Collapsible
<T> {
51
* Collapses a list of
Collapsible
items into a list of collapsed items. Items are collapsed
52
* if {@link
Collapsible
#shouldCollapseWith(Object)} returns true, and are collapsed
53
* through the {@Link
Collapsible
#collapseWith(Object)} function implemented by the data item.
55
* @param list List of Objects of type <T extends
Collapsible
<T>> to be collapsed.
57
public static <T extends
Collapsible
<T>> void collapseList(List<T> list) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Collapser.java
24
*
collapsible
should implement the
Collapsible
interface. The class also contains a utility
39
public interface
Collapsible
<T> {
45
* Collapses a list of
Collapsible
items into a list of collapsed items. Items are collapsed
46
* if {@link
Collapsible
#shouldCollapseWith(Object) return strue, and are collapsed
47
* through the {@Link
Collapsible
#collapseWith(Object)} function implemented by the data item.
49
* @param list ArrayList of Objects of type <T extends
Collapsible
<T>> to be collapsed.
51
public static <T extends
Collapsible
<T>> void collapseList(ArrayList<T> list) {
Completed in 91 milliseconds