1 package com.asimplesock.chatistics; 2 3 public class Names { 4 String name1 = "Person 1"; 5 6 String name2 = "Person 2"; 7 8 int texts1 = 0; 9 10 int texts2 = 0; 11 12 int words1 = 0; 13 14 int words2 = 0; 15 16 boolean isGroup = false; 17 18 public String getName1() { 19 return this.name1; 20 } 21 22 public String getName2() { 23 return this.name2; 24 } 25 26 public void setName1(String s) { 27 this.name1 = s; 28 } 29 30 public void setName2(String s) { 31 this.name2 = s; 32 } 33 34 public void setWords1(int i) { 35 this.words1 = i; 36 } 37 38 public void setWords2(int i) { 39 this.words2 = i; 40 } 41 42 public int getWords1() { 43 return this.words1; 44 } 45 46 public int getWords2() { 47 return this.words2; 48 } 49 50 public int getTexts1() { 51 return this.texts1; 52 } 53 54 public int getTexts2() { 55 return this.texts2; 56 } 57 58 public void setTexts1(int i) { 59 this.texts1 = i; 60 } 61 62 public void setTexts2(int i) { 63 this.texts2 = i; 64 } 65 } 66