Android Open Source - beansight-mobile-android Insight Vote






From Project

Back to project page beansight-mobile-android.

License

The source code is released under:

Apache License

If you think the Android project beansight-mobile-android 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.beansight.android.models;
/* w ww.  j av a 2 s  .c  om*/
public class InsightVote {
  private String id;
  private Long updatedAgreeCount;
  private Long updatedDisagreeCount;
  private String voteState;
  
  public String getId() {
    return id;
  }
  public void setId(String id) {
    this.id = id;
  }
  public Long getUpdatedAgreeCount() {
    return updatedAgreeCount;
  }
  public void setUpdatedAgreeCount(Long updatedAgreeCount) {
    this.updatedAgreeCount = updatedAgreeCount;
  }
  public Long getUpdatedDisagreeCount() {
    return updatedDisagreeCount;
  }
  public void setUpdatedDisagreeCount(Long updatedDisagreeCount) {
    this.updatedDisagreeCount = updatedDisagreeCount;
  }
  public String getVoteState() {
    return voteState;
  }
  public void setVoteState(String voteState) {
    this.voteState = voteState;
  }

}




Java Source Code List

com.beansight.android.BeansightApplication.java
com.beansight.android.HomeActivity.java
com.beansight.android.WebViewActivity.java
com.beansight.android.api.BeansightApi.java
com.beansight.android.api.NotAuthenticatedException.java
com.beansight.android.api.ServerErrorException.java
com.beansight.android.api.responses.InsightDetailResponse.java
com.beansight.android.api.responses.InsightListResponse.java
com.beansight.android.api.responses.InsightVoteResponse.java
com.beansight.android.api.responses.Meta.java
com.beansight.android.api.responses.Response.java
com.beansight.android.api.responses.UserProfileResponse.java
com.beansight.android.http.Http.java
com.beansight.android.models.InsightDetail.java
com.beansight.android.models.InsightListItem.java
com.beansight.android.models.InsightVote.java
com.beansight.android.models.UserProfile.java