Package uk.org.microbase.gwt.client.notification

Examples of uk.org.microbase.gwt.client.notification.TopicGWT


      }
      List<TopicGWT> page = new ArrayList<TopicGWT>();
      for (int i=start; i<allTopicGuids.size(); i++)
      {
        String topicGuid = allTopicGuids.get(i);
        TopicGWT topic = new TopicGWT();
        topic.setTopicGuid(topicGuid);
        page.add(topic);
      }

      logger.info("Returning "+page.size()+" topics");
      return page;
View Full Code Here

TOP

Related Classes of uk.org.microbase.gwt.client.notification.TopicGWT

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.