]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/SerializeCollatorTest.java
Stoplists, fix location of wikisplits.
[DictionaryPC.git] / src / com / hughes / android / dictionary / SerializeCollatorTest.java
diff --git a/src/com/hughes/android/dictionary/SerializeCollatorTest.java b/src/com/hughes/android/dictionary/SerializeCollatorTest.java
new file mode 100644 (file)
index 0000000..d22ce5e
--- /dev/null
@@ -0,0 +1,35 @@
+// Copyright 2011 Google Inc. All Rights Reserved.\r
+//\r
+// Licensed under the Apache License, Version 2.0 (the "License");\r
+// you may not use this file except in compliance with the License.\r
+// You may obtain a copy of the License at\r
+//\r
+//     http://www.apache.org/licenses/LICENSE-2.0\r
+//\r
+// Unless required by applicable law or agreed to in writing, software\r
+// distributed under the License is distributed on an "AS IS" BASIS,\r
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+// See the License for the specific language governing permissions and\r
+// limitations under the License.\r
+\r
+package com.hughes.android.dictionary;\r
+\r
+import java.io.File;\r
+import java.io.IOException;\r
+\r
+import com.hughes.android.dictionary.engine.Language;\r
+import com.ibm.icu.text.Collator;\r
+\r
+public class SerializeCollatorTest {\r
+\r
+  /**\r
+   * @param args\r
+   * @throws IOException \r
+   */\r
+  public static void main(String[] args) throws IOException {\r
+    File temp = File.createTempFile("temp", null);\r
+    final Collator c = Language.de.getCollator();\r
+    //FileUtil.writeObject(c, temp);\r
+  }\r
+\r
+}\r