JAL-3032 upgrade to Jmol 14.29.17; clearing of src2 directory
[jalview.git] / src2 / fr / orsay / lri / varna / models / templates / DrawRNATemplateMethod.java
diff --git a/src2/fr/orsay/lri/varna/models/templates/DrawRNATemplateMethod.java b/src2/fr/orsay/lri/varna/models/templates/DrawRNATemplateMethod.java
deleted file mode 100644 (file)
index 9fd5f67..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * File written by Raphael Champeimont
- * UMR 7238 Genomique des Microorganismes
- */
-package fr.orsay.lri.varna.models.templates;
-
-/**
- * What to do in case some helices are of a different length
- * in the template and the actual helix.
- * Possibles values are:
- * 0 - No adjustment is done.
- *     A longer than expected helix might bump into an other helix.
- * 1 - Scaling factors (actual length / template length) are calculated,
- *     the maximum scaling factor L is extracted, then all helix positions
- *     are multiplied by L. 
- * 2 - Same as 1, but L is computed as the minimum value such that there
- *     are no backbone intersections.
- */
-public enum DrawRNATemplateMethod {
-       NOADJUST("No Adjust"), MAXSCALINGFACTOR("Max Scaling"), NOINTERSECT("Non-crossing"), HELIXTRANSLATE("Helix Translation");
-       
-       String _msg;
-       
-       public static DrawRNATemplateMethod getDefault() {
-               return HELIXTRANSLATE;
-       }
-       
-
-       public String toString()
-       {
-               return _msg;
-       }
-       
-       private DrawRNATemplateMethod(String msg)
-       {
-               _msg = msg;
-       }
-}
\ No newline at end of file