JAL-3032 upgrade to Jmol 14.29.17; clearing of src2 directory
[jalview.git] / src2 / fr / orsay / lri / varna / models / rna / StructureTemp.java
diff --git a/src2/fr/orsay/lri/varna/models/rna/StructureTemp.java b/src2/fr/orsay/lri/varna/models/rna/StructureTemp.java
deleted file mode 100644 (file)
index 40063ba..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-package fr.orsay.lri.varna.models.rna;
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.Iterator;
-
-public class StructureTemp  implements Serializable{
-       /**
-        * 
-        */
-       private static final long serialVersionUID = -436852923461989105L;
-       private ArrayList<ModeleStrand> _struct = new ArrayList<ModeleStrand>();
-       
-       public StructureTemp(){
-               
-       }
-       
-       public void addStrand(ModeleStrand ms){
-               this._struct.add(ms);
-               
-       }
-       
-       public int sizeStruct() {
-               return this._struct.size();
-       }
-       
-       public ModeleStrand getStrand(int a) {
-               return this._struct.get(a);
-       }
-
-       public ArrayList<ModeleStrand> getListStrands() {
-               return _struct;
-       }
-
-       public void clearListStrands() {
-               this._struct.clear();
-       }
-       
-       public boolean isEmpty() {
-               return this._struct.isEmpty();
-       }
-
-}