| 1 | import java.util.ArrayList; |
| 2 | |
| 3 | public class Exps { |
| 4 | private ArrayList<ArrayList<Word>> words; |
| 5 | private ArrayList<Word> symbols; |
| 6 | |
| 7 | public Exps(ArrayList<ArrayList<Word>> words, ArrayList<Word> symbols) { |
| 8 | this.words = words; |
| 9 | this.symbols = symbols; |
| 10 | } |
| 11 | |
| 12 | public ArrayList<ArrayList<Word>> getWords() { |
| 13 | return words; |
| 14 | } |
| 15 | |
| 16 | public ArrayList<Word> getSymbols() { |
| 17 | return symbols; |
| 18 | } |
| 19 | |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected