|
|
@ -16,11 +16,11 @@ public class MoreModel extends AlphaCellModel { |
|
|
|
super(name, content, CellType.MORE); |
|
|
|
super(name, content, CellType.MORE); |
|
|
|
this.needMore = needMore; |
|
|
|
this.needMore = needMore; |
|
|
|
this.contentType = type; |
|
|
|
this.contentType = type; |
|
|
|
|
|
|
|
setLoading(true); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public MoreModel(String name) { |
|
|
|
public MoreModel(String name) { |
|
|
|
super(name, null, CellType.MORE); |
|
|
|
this(name, true); |
|
|
|
this.needMore = false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public MoreModel(String name, boolean isLoading) { |
|
|
|
public MoreModel(String name, boolean isLoading) { |
|
|
@ -51,6 +51,11 @@ public class MoreModel extends AlphaCellModel { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void resetState() { |
|
|
|
|
|
|
|
setLoading(false); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public boolean isLoading() { |
|
|
|
public boolean isLoading() { |
|
|
|
return isLoading; |
|
|
|
return isLoading; |
|
|
|
} |
|
|
|
} |
|
|
|