This commit is contained in:
Yorick Rommers
2017-05-02 13:37:34 +02:00
parent c1c0437b21
commit f6c4bb5e36
4 changed files with 69 additions and 20 deletions
+18
View File
@@ -0,0 +1,18 @@
package com.imegumii;
import java.util.SortedSet;
/**
* Created by imegumii on 02/05/2017.
*/
public class Taal {
private SortedSet<String> symbols;
public Taal(SortedSet<String> sortedSet) {
this.symbols = sortedSet;
}
public SortedSet<String> getSymbols() {
return symbols;
}
}