Package net.cloudcodex.server.data.home

Examples of net.cloudcodex.server.data.home.CharacterSummary


      campaignSummary.setMaster(dao.readUser(context, campaign.getMaster()));
     
      // Search the notifications. may be null.
      final List<Notification> notifications = getNotifications(context, key);
     
      final CharacterSummary summary = new CharacterSummary();
      summary.setCharacter(character);
      summary.setCampaign(campaignSummary);
      summary.setNotifications(notifications);
     
      summaries.add(summary);
    }
   
    return summaries.isEmpty() ? null : summaries;
View Full Code Here

TOP

Related Classes of net.cloudcodex.server.data.home.CharacterSummary

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.