Advertisement
Guest User

Def

a guest
Apr 15th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.79 KB | None | 0 0
  1. package com.alexandergartemov.translationmobilization.data.dictionary;
  2.  
  3. /**
  4.  * Created by Alexa on 15.04.2017.
  5.  */
  6.  
  7. public class Def
  8. {
  9.     private String text;
  10.     private String ts;
  11.     private String pos;
  12.     private Tr[] tr;
  13.  
  14.     public String getText ()
  15.     {
  16.         return text;
  17.     }
  18.  
  19.     public void setText (String text)
  20.     {
  21.         this.text = text;
  22.     }
  23.  
  24.     public String getTs ()
  25.     {
  26.         return ts;
  27.     }
  28.  
  29.     public void setTs (String ts)
  30.     {
  31.         this.ts = ts;
  32.     }
  33.  
  34.     public Tr[] getTr ()
  35.     {
  36.         return tr;
  37.     }
  38.  
  39.     public void setTr (Tr[] tr)
  40.     {
  41.         this.tr = tr;
  42.     }
  43.  
  44.     public String getPos ()
  45.     {
  46.         return pos;
  47.     }
  48.  
  49.     public void setPos (String pos)
  50.     {
  51.         this.pos = pos;
  52.     }
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement