OSDN Git Service

removed all files
[xerial/xerial-core.git] / src / test / java / org / xerial / lens / Coordinate.java
diff --git a/src/test/java/org/xerial/lens/Coordinate.java b/src/test/java/org/xerial/lens/Coordinate.java
deleted file mode 100755 (executable)
index 6f4a3a1..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*--------------------------------------------------------------------------\r
- *  Copyright 2009 Taro L. Saito\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
-//--------------------------------------\r
-// XerialJ\r
-//\r
-// Coordinate.java\r
-// Since: 2009/02/18 20:09:09\r
-//\r
-// $URL$\r
-// $Author$\r
-//--------------------------------------\r
-package org.xerial.lens;\r
-\r
-public class Coordinate\r
-{\r
-    String group;\r
-    String species;\r
-    String revision;\r
-    String name;\r
-\r
-    public void setGroup(String group)\r
-    {\r
-        this.group = group;\r
-    }\r
-\r
-    public void setSpecies(String species)\r
-    {\r
-        this.species = species;\r
-    }\r
-\r
-    public void setRevision(String revision)\r
-    {\r
-        this.revision = revision;\r
-    }\r
-\r
-    public void setName(String name)\r
-    {\r
-        this.name = name;\r
-    }\r
-\r
-    @Override\r
-    public String toString()\r
-    {\r
-        return String.format("group=%s, species=%s, revision=%s, name=%s", group, species, revision, name);\r
-    }\r
-\r
-}\r