Android Open Source - radioExpresWidget Document






From Project

Back to project page radioExpresWidget.

License

The source code is released under:

GNU General Public License

If you think the Android project radioExpresWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.hustaty.radioexpres.widget.model;
/*  w  ww. j a  v a 2  s .  c  o  m*/
import java.util.List;

import org.simpleframework.xml.Default;
import org.simpleframework.xml.DefaultType;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;

/**
 * User: slavino Date: 10/24/13 Time: 7:01 PM
 */
@Default(DefaultType.FIELD)
public class Document {

  @Element(name = "name")
  private String name;

  @Element(name = "description")
  private String description;

  @ElementList(entry = "Style", inline = true)
  private List<Style> styleList;

  @ElementList(entry = "Placemark", inline = true)
  private List<Placemark> placemarkList;

  public Document() {
    super();
  }

  public Document(String name, String description, List<Style> styleList, List<Placemark> placemarkList) {
    super();
    this.name = name;
    this.description = description;
    this.styleList = styleList;
    this.placemarkList = placemarkList;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public List<Style> getStyleList() {
    return styleList;
  }

  public void setStyleList(List<Style> styleList) {
    this.styleList = styleList;
  }

  public List<Placemark> getPlacemarkList() {
    return placemarkList;
  }

  public void setPlacemarkList(List<Placemark> placemarkList) {
    this.placemarkList = placemarkList;
  }

  @Override
  public String toString() {
    return "Document{" +
        "name='" + name + '\'' +
        ", description='" + description + '\'' +
        ", styleList=" + styleList +
        ", placemarkList=" + placemarkList +
        '}';
  }
}




Java Source Code List

com.hustaty.radioexpres.widget.MyActivity.java
com.hustaty.radioexpres.widget.exception.RadioExpresException.java
com.hustaty.radioexpres.widget.http.MyHttpClient.java
com.hustaty.radioexpres.widget.model.Document.java
com.hustaty.radioexpres.widget.model.IconStyle.java
com.hustaty.radioexpres.widget.model.Icon.java
com.hustaty.radioexpres.widget.model.Kml.java
com.hustaty.radioexpres.widget.model.Placemark.java
com.hustaty.radioexpres.widget.model.Point.java
com.hustaty.radioexpres.widget.model.Style.java
com.hustaty.radioexpres.widget.receiver.AlarmManagerBroadcastReceiver.java
com.hustaty.radioexpres.widget.service.LocationService.java
com.hustaty.radioexpres.widget.util.Constants.java
com.hustaty.radioexpres.widget.util.LogUtil.java
com.hustaty.radioexpres.widget.util.Serializer.java