Advertisement
Guest User

Ex

a guest
Apr 15th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.47 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 Ex
  8. {
  9.     private String text;
  10.  
  11.     private Tr[] tr;
  12.  
  13.     public String getText ()
  14.     {
  15.         return text;
  16.     }
  17.  
  18.     public void setText (String text)
  19.     {
  20.         this.text = text;
  21.     }
  22.  
  23.     public Tr[] getTr ()
  24.     {
  25.         return tr;
  26.     }
  27.  
  28.     public void setTr (Tr[] tr)
  29.     {
  30.         this.tr = tr;
  31.     }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement