Android Open Source - YesNoGame Vote Simple Dto






From Project

Back to project page YesNoGame.

License

The source code is released under:

GNU General Public License

If you think the Android project YesNoGame 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 example.swa.yesnogame.domain.dto;
/*from  w w  w. j  a va  2 s.c  o m*/
import example.swa.yesnogame.domain.simple.BaseObject;

/**
 * Entity class. Simple type. Cloneable. Comparable. Equals on userID and pollId
 * (keys).
 * 
 * @author Hendrik.Stilke@siemens.com
 * 
 */
public class VoteSimpleDto extends BaseObject implements Cloneable {

  Long Id;
  String PollTitle;
  String UserName;
  int VoteValue;

  public VoteSimpleDto(Long id, String pollTitle, String userName, int voteValue) {
    super();
    this.Id = id;
    this.PollTitle = pollTitle;
    this.UserName = userName;
    this.VoteValue = voteValue;
  }

  public Long getId() {
    return this.Id;
  }

  public String getPollTitle() {
    return this.PollTitle;
  }

  public String getUserName() {
    return this.UserName;
  }

  public int getVoteValue() {
    return this.VoteValue;
  }

  public void setId(Long id) {
    this.Id = id;
  }

  public void setPollTitle(String pollTitle) {
    this.PollTitle = pollTitle;
  }

  public void setUserName(String userName) {
    this.UserName = userName;
  }

  public void setVoteValue(int voteValue) {
    this.VoteValue = voteValue;
  }

}




Java Source Code List

example.swa.yesnogame.BaseActivity.java
example.swa.yesnogame.InitPollActivity.java
example.swa.yesnogame.MainActivity.java
example.swa.yesnogame.PollResultActivity.java
example.swa.yesnogame.VoteActivity.java
example.swa.yesnogame.domain.Poll.java
example.swa.yesnogame.domain.User.java
example.swa.yesnogame.domain.Vote.java
example.swa.yesnogame.domain.dto.PollSimpleDto.java
example.swa.yesnogame.domain.dto.UserSimpleDto.java
example.swa.yesnogame.domain.dto.VoteSimpleDto.java
example.swa.yesnogame.domain.simple.BaseObject.java
example.swa.yesnogame.domain.simple.PollSimple.java
example.swa.yesnogame.domain.simple.UserSimple.java
example.swa.yesnogame.domain.simple.VoteSimple.java
example.swa.yesnogame.domain.util.PollComparator.java
example.swa.yesnogame.domain.util.VoteComparator.java
example.swa.yesnogame.service.IPollService.java
example.swa.yesnogame.service.PollServiceBase.java
example.swa.yesnogame.service.PollServiceCloud.java
example.swa.yesnogame.service.PollServiceMock.java
example.swa.yesnogame.service.PollServiceProvider.java
example.swa.yesnogame.service.PollService.java
example.swa.yesnogame.service.util.EntityFormatEnum.java
example.swa.yesnogame.service.util.RequestMethodEnum.java
example.swa.yesnogame.service.util.RequestUrlParams.java
example.swa.yesnogame.service.util.RequestUrlTask.java
example.swa.yesnogame.ui.YesNoArrayAdapter.java