将类聚合为一个单独的类

时间:2015-11-07 16:08:14

标签: java android

是否可以复制以下类:

public class StoryEntity {
    FeedEntity feeds;
    ImageEntity images ;
    VideoEntity videos;

// setters & getters
}

为:

public class Story {
    List<String> feeds;
    List<String> images ;
    List<String> videos;

  //  setters & getters
}

图像实体类是:

public class ImageEntity {
    String oUrl;
    String url;
    String thumb;
    String title;
    String alt;
    int count;

    public ImageEntity() {
    }
 // setters and getters
}

其他实体类与ImageEntity类相似,即包含字符串和int数据类型的字段。 谢谢你的帮助

0 个答案:

没有答案