fixed copyright headers
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / string / tokenizer / TokenizerMatch.java
diff --git a/src/main/java/eu/svjatoslav/commons/string/tokenizer/TokenizerMatch.java b/src/main/java/eu/svjatoslav/commons/string/tokenizer/TokenizerMatch.java
new file mode 100644 (file)
index 0000000..439eb2a
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * Svjatoslav Commons - shared library of common functionality.
+ * Copyright ©2012-2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public License
+ * as published by the Free Software Foundation.
+ */
+
+package eu.svjatoslav.commons.string.tokenizer;
+
+public class TokenizerMatch {
+
+       public String token;
+       public Terminator terminator;
+
+       public TokenizerMatch(final String token, final Terminator terminator) {
+               this.token = token;
+               this.terminator = terminator;
+       }
+}