Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.chad.library.adapter.base.entity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface IExpandable<T> {
|
||||
int getLevel();
|
||||
|
||||
List<T> getSubItems();
|
||||
|
||||
boolean isExpanded();
|
||||
|
||||
void setExpanded(boolean z);
|
||||
}
|
||||
Reference in New Issue
Block a user