本文整理汇总了Java中org.robobinding.annotation.ItemPresentationModel类的典型用法代码示例。如果您正苦于以下问题:Java ItemPresentationModel类的具体用法?Java ItemPresentationModel怎么用?Java ItemPresentationModel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ItemPresentationModel类属于org.robobinding.annotation包,在下文中一共展示了ItemPresentationModel类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAlbums
import org.robobinding.annotation.ItemPresentationModel; //导入依赖的package包/类
@ItemPresentationModel(AlbumItemPresentationModel.class)
public List<Album> getAlbums() {
Log.d(ViewAlbumsPresentationModel.class.getSimpleName(), "in getAlbums():" + albumStore.getAll().size() + " albums");
return new ArrayList<Album>(albumStore.getAll());
}
示例2: getStrings
import org.robobinding.annotation.ItemPresentationModel; //导入依赖的package包/类
@ItemPresentationModel(value = StringItemPresentationModel.class)
public List<String> getStrings() {
return strings;
}
示例3: setStrings
import org.robobinding.annotation.ItemPresentationModel; //导入依赖的package包/类
@ItemPresentationModel(value = StringItemPresentationModel.class)
public void setStrings(List<String> newList) {
strings.clear();
strings.addAll(newList);
}
示例4: getResultList
import org.robobinding.annotation.ItemPresentationModel; //导入依赖的package包/类
@ItemPresentationModel(value = StringItemPresentationModel.class)
public List<String> getResultList() {
return resultList;
}