Advertisement
mrchebik

Untitled

Aug 28th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package ru.mrchebik.model;
  2.  
  3. /**
  4.  * Created by mrchebik on 27.08.16.
  5.  */
  6. public class NoteModel {
  7.     private String title;
  8.     private String text;
  9.  
  10.     public String getTitle() {
  11.         return title;
  12.     }
  13.  
  14.     public void setTitle(String title) {
  15.         this.title = title;
  16.     }
  17.  
  18.     public String getText() {
  19.         return text;
  20.     }
  21.  
  22.     public void setText(String text) {
  23.         this.text = text;
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement