tuttelikz

HearingRestult [-]

Dec 12th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.01 KB | None | 0 0
  1. package com.example.iptea.hearingclub;
  2.  
  3. import io.realm.RealmObject;
  4.  
  5. /**
  6.  * Created by iptea on 12/11/2017.
  7.  */
  8.  
  9. public class HearingResults extends RealmObject {
  10.  
  11.     private String id;
  12. /*    private String minFrequency;
  13.     private String maxFrequency;
  14.     private String percentage;*/
  15.  
  16.  
  17. /*    public HearingResults() {
  18.     }*/
  19.  
  20.     public String getId() {
  21.         return id;
  22.     }
  23.  
  24.     public void setId(String id) {
  25.         this.id = id;
  26.     }
  27.  
  28.  
  29. /*    public String getMinFrequency() {
  30.         return minFrequency;
  31.     }
  32.  
  33.     public void setMinFrequency(String minFrequency) {
  34.         this.minFrequency = minFrequency;
  35.     }
  36.  
  37.  
  38.     public String getMaxFrequency() {
  39.         return maxFrequency;
  40.     }
  41.  
  42.     public void setMaxFrequency(String maxFrequency) {
  43.         this.maxFrequency = maxFrequency;
  44.     }
  45.  
  46.  
  47.     public String getPercentage() {
  48.         return percentage;
  49.     }
  50.  
  51.     public void setPercentage(String percentage) {
  52.         this.percentage = percentage;
  53.     }*/
  54. }
Advertisement
Add Comment
Please, Sign In to add comment