Package com.appspot.plucial.model

Examples of com.appspot.plucial.model.AlbumModel


     * @param model
     * @return
     */
    public static AlbumModel put(ActivityModel activityModel, String url, String imageUrl, Long height, long width) {

        AlbumModel model = new AlbumModel();
        model.setUrl(new Text(url));
        model.setImageUrl(new Text(imageUrl));
        model.setHeight(height);
        model.setWidth(width);

        // 親の設定
        model.getActivityModelRef().setModel(activityModel);

        // 永久化
        dao.put(model);

        return model;
View Full Code Here

TOP

Related Classes of com.appspot.plucial.model.AlbumModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.