OSDN Git Service

removed all files
[xerial/xerial-core.git] / src / test / java / org / xerial / util / bean / sample / GenePartial.java
diff --git a/src/test/java/org/xerial/util/bean/sample/GenePartial.java b/src/test/java/org/xerial/util/bean/sample/GenePartial.java
deleted file mode 100755 (executable)
index 5421b63..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/*--------------------------------------------------------------------------\r
- *  Copyright 2008 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
-// GenePartial.java\r
-// Since: Jun 18, 2008 3:46:03 PM\r
-//\r
-// $URL: http://www.xerial.org/svn/project/XerialJ/trunk/xerial-core/src/test/java/org/xerial/util/bean/sample/GenePartial.java $\r
-// $Author: leo $\r
-//--------------------------------------\r
-package org.xerial.util.bean.sample;\r
-\r
-/**\r
- * same object with Gene except the name parameter is missing\r
- * \r
- * @author leo\r
- * \r
- */\r
-public class GenePartial\r
-{\r
-    private int id;\r
-    private int start;\r
-    private int end;\r
-    private String strand;\r
-    private String target;\r
-\r
-    public GenePartial()\r
-    {}\r
-\r
-    public int getId()\r
-    {\r
-        return id;\r
-    }\r
-\r
-    public void setId(int id)\r
-    {\r
-        this.id = id;\r
-    }\r
-\r
-    public int getStart()\r
-    {\r
-        return start;\r
-    }\r
-\r
-    public void setStart(int start)\r
-    {\r
-        this.start = start;\r
-    }\r
-\r
-    public int getEnd()\r
-    {\r
-        return end;\r
-    }\r
-\r
-    public void setEnd(int end)\r
-    {\r
-        this.end = end;\r
-    }\r
-\r
-    public String getStrand()\r
-    {\r
-        return strand;\r
-    }\r
-\r
-    public void setStrand(String strand)\r
-    {\r
-        this.strand = strand;\r
-    }\r
-\r
-    public String getTarget()\r
-    {\r
-        return target;\r
-    }\r
-\r
-    public void setTarget(String target)\r
-    {\r
-        this.target = target;\r
-    }\r
-\r
-}\r