Package test.abdera

Examples of test.abdera.Item


public class NewsServiceImpl implements NewsService {
  private static Map<String, Entry> collection = new HashMap<String, Entry>();
 
  @Init
  public void init() {
    Item item = new Item();
    item.setName("Item Name 01");
    item.setTitle("Item title 01");
   
    Entry entry = new Entry();
    entry.setKey("1");
    entry.setData(item);
   
View Full Code Here


public class NewsServiceImpl implements NewsService {
  private static Map<String, Entry> collection = new HashMap<String, Entry>();
 
  @Init
  public void init() {
    Item item = new Item();
    item.setName("Item Name 01");
    item.setTitle("Item title 01");
   
    Entry entry = new Entry();
    entry.setKey("1");
    entry.setData(item);
   
View Full Code Here

TOP

Related Classes of test.abdera.Item

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.