Skip to content

Instantly share code, notes, and snippets.

@sujathakvr
Last active November 9, 2016 16:50
Show Gist options
  • Save sujathakvr/f2ee48256af044ab9f1946bb48b27f3b to your computer and use it in GitHub Desktop.
Save sujathakvr/f2ee48256af044ab9f1946bb48b27f3b to your computer and use it in GitHub Desktop.
package com.ourOffice.model;
import java.util.ArrayList;
//This class is used for storing input word pool file name and word list
public class WordPool {
private ArrayList<String> wordList;
private String fileName;
public ArrayList<String> getWordList() {
return wordList;
}
public void setWordList(ArrayList<String> wordList) {
this.wordList = wordList;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment