Speakers.java :  » App » theedge2010 » com » alphacsp » theedge » data » entities » Android Open Source

Android Open Source » App » theedge2010 
theedge2010 » com » alphacsp » theedge » data » entities » Speakers.java
package com.alphacsp.theedge.data.entities;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User: Gilad
 * Date: 20/10/10
 * Time: 15:30
 */
@XStreamAlias("speakers")
public class Speakers {

    @XStreamImplicit(itemFieldName = "speaker")
    List<Speaker> speakerList;

    public List<Speaker> getSpeakerList() {
        return speakerList;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.