mc_view references were MCview
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Tue, 21 Aug 2018 02:10:41 +0000 (21:10 -0500)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Tue, 21 Aug 2018 02:10:59 +0000 (21:10 -0500)
14 files changed:
src/jalview/appletgui/APopupMenu.java
src/jalview/appletgui/AlignFrame.java
src/jalview/appletgui/AppletJmol.java
src/jalview/appletgui/CutAndPasteTransfer.java
src/jalview/appletgui/UserDefinedColours.java
src/jalview/bin/JalviewLite.java
src/jalview/ext/jmol/JalviewJmolBinding.java
src/jalview/ext/jmol/JmolParser.java
src/jalview/io/AppletFormatAdapter.java
src/jalview/io/FileFormat.java
src/jalview/io/PDBFeatureSettings.java
src/jalview/io/StructureFile.java
src/jalview/structure/StructureSelectionManager.java
src/jalview/ws/sifts/SiftsClient.java

index 76f2705..3aed7ec 100644 (file)
@@ -945,7 +945,7 @@ public class APopupMenu extends java.awt.PopupMenu
       }
       else
       {
-        new MCview.AppletPDBViewer(entry, new SequenceI[] { seq }, null, ap,
+        new mc_view.AppletPDBViewer(entry, new SequenceI[] { seq }, null, ap,
                 DataSourceType.URL);
       }
 
index 5ad212e..8740f51 100644 (file)
@@ -4183,7 +4183,7 @@ public class AlignFrame extends EmbmenuFrame implements ActionListener,
     }
     else
     {
-      new MCview.AppletPDBViewer(pdb, seqs, chains, alignPanel, protocol);
+      new mc_view.AppletPDBViewer(pdb, seqs, chains, alignPanel, protocol);
     }
 
   }
index 3d1442d..7fda3c4 100644 (file)
@@ -335,7 +335,7 @@ public class AppletJmol extends EmbmenuFrame implements
             }
             FileParse fp = new FileParse(pdbentry.getFile(), protocol);
             fp.mark();
-            // reader = new MCview.PDBfile(fp);
+            // reader = new mc_view.PDBfile(fp);
             // could set ID, etc.
             // if (!reader.isValid())
             // {
index 22a49cd..f42686d 100644 (file)
@@ -451,7 +451,7 @@ public class CutAndPasteTransfer extends Panel
     }
     else
     {
-      new MCview.AppletPDBViewer(pdb, new SequenceI[] { seq }, null,
+      new mc_view.AppletPDBViewer(pdb, new SequenceI[] { seq }, null,
               alignFrame.alignPanel, DataSourceType.PASTE);
     }
   }
index 6831a73..febe5f8 100644 (file)
@@ -70,7 +70,7 @@ public class UserDefinedColours extends Panel
 
   Frame frame;
 
-  MCview.AppletPDBCanvas pdbcanvas;
+  mc_view.AppletPDBCanvas pdbcanvas;
 
   AppletJmol jmol;
 
@@ -107,7 +107,7 @@ public class UserDefinedColours extends Panel
     init();
   }
 
-  public UserDefinedColours(MCview.AppletPDBCanvas pdb)
+  public UserDefinedColours(mc_view.AppletPDBCanvas pdb)
   {
     this.pdbcanvas = pdb;
     init();
index a60496c..e483fce 100644 (file)
@@ -1333,7 +1333,7 @@ public class JalviewLite extends Applet
   private boolean alignPdbStructures = false;
 
   /**
-   * use an external structure viewer exclusively (no jmols or MCViews will be
+   * use an external structure viewer exclusively (no jmols or mc_views will be
    * opened by JalviewLite itself)
    */
   public boolean useXtrnalSviewer = false;
@@ -1798,7 +1798,7 @@ public class JalviewLite extends Applet
           if (!jmolAvailable)
           {
             System.out.println(
-                    "Jmol not available - Using MCview for structures");
+                    "Jmol not available - Using mc_view for structures");
           }
         } catch (java.lang.ClassNotFoundException ex)
         {
@@ -1810,7 +1810,7 @@ public class JalviewLite extends Applet
         if (debug)
         {
           System.err.println(
-                  "Skipping Jmol check. Will use MCView (probably)");
+                  "Skipping Jmol check. Will use mc_view (probably)");
         }
       }
       checkedForJmol = true;
index 258d806..5afbc8e 100644 (file)
@@ -935,7 +935,7 @@ public abstract class JalviewJmolBinding extends AAStructureBindingModel
   {
     /**
      * this implements the toggle label behaviour copied from the original
-     * structure viewer, MCView
+     * structure viewer, mc_view
      */
     if (strData != null)
     {
index fd483ad..e94da73 100644 (file)
@@ -45,9 +45,9 @@ import org.jmol.c.STR;
 import org.jmol.modelset.ModelSet;
 import org.jmol.viewer.Viewer;
 
-import MCview.Atom;
-import MCview.PDBChain;
-import MCview.Residue;
+import mc_view.Atom;
+import mc_view.PDBChain;
+import mc_view.Residue;
 
 /**
  * Import and process files with Jmol for file like PDB, mmCIF
index 95cbb61..8c376fc 100755 (executable)
@@ -178,9 +178,9 @@ public class AppletFormatAdapter
         }
         else
         {
-          // todo is MCview parsing obsolete yet? JAL-2120
+          // todo is mc_view parsing obsolete yet? JAL-2120
           StructureImportSettings.setShowSeqFeatures(true);
-          alignFile = new MCview.PDBfile(annotFromStructure,
+          alignFile = new mc_view.PDBfile(annotFromStructure,
                   localSecondaryStruct, serviceSecondaryStruct, inFile,
                   sourceType);
         }
@@ -265,7 +265,7 @@ public class AppletFormatAdapter
         else
         {
           StructureImportSettings.setShowSeqFeatures(true);
-          alignFile = new MCview.PDBfile(annotFromStructure,
+          alignFile = new mc_view.PDBfile(annotFromStructure,
                   localSecondaryStruct, serviceSecondaryStruct, source);
         }
         ((StructureFile) alignFile).setDbRefType(Type.PDB);
index 4b33dbf..ff7475f 100644 (file)
@@ -306,7 +306,7 @@ public enum FileFormat implements FileFormatI
       else
       {
         StructureImportSettings.setShowSeqFeatures(true);
-        return new MCview.PDBfile(
+        return new mc_view.PDBfile(
                 StructureImportSettings.isVisibleChainAnnotation(),
                 StructureImportSettings.isProcessSecondaryStructure(),
                 StructureImportSettings.isExternalSecondaryStructure(),
index 0f2b0ac..01610a1 100644 (file)
@@ -26,7 +26,7 @@ import jalview.schemes.FeatureSettingsAdapter;
 
 import java.awt.Color;
 
-import MCview.PDBChain;
+import mc_view.PDBChain;
 
 public class PDBFeatureSettings extends FeatureSettingsAdapter
 {
index 778c683..16ae0a1 100644 (file)
@@ -38,7 +38,7 @@ import java.lang.reflect.Constructor;
 import java.util.List;
 import java.util.Vector;
 
-import MCview.PDBChain;
+import mc_view.PDBChain;
 
 public abstract class StructureFile extends AlignFile
 {
index cd986c0..6261e74 100644 (file)
@@ -56,9 +56,9 @@ import java.util.List;
 import java.util.Map;
 import java.util.Vector;
 
-import MCview.Atom;
-import MCview.PDBChain;
-import MCview.PDBfile;
+import mc_view.Atom;
+import mc_view.PDBChain;
+import mc_view.PDBfile;
 
 public class StructureSelectionManager
 {
index b5f9653..d065666 100644 (file)
@@ -71,8 +71,8 @@ import javax.xml.bind.Unmarshaller;
 import javax.xml.stream.XMLInputFactory;
 import javax.xml.stream.XMLStreamReader;
 
-import MCview.Atom;
-import MCview.PDBChain;
+import mc_view.Atom;
+import mc_view.PDBChain;
 
 public class SiftsClient implements SiftsClientI
 {