X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAssociatePdbFileWithSeq.java;h=20e8dfef7077f9b340a115dd82de6bfa2c28f27c;hb=3609d4b908fa64cab35f2348401baab3347188fc;hp=7e646e25bcd2c434c4a26b60f65b643f56318c9a;hpb=bc27e1b604af729b363da1f29bdd5774ca79f4e4;p=jalview.git diff --git a/src/jalview/gui/AssociatePdbFileWithSeq.java b/src/jalview/gui/AssociatePdbFileWithSeq.java index 7e646e2..20e8dfe 100644 --- a/src/jalview/gui/AssociatePdbFileWithSeq.java +++ b/src/jalview/gui/AssociatePdbFileWithSeq.java @@ -23,11 +23,11 @@ package jalview.gui; import jalview.api.StructureSelectionManagerProvider; import jalview.datamodel.PDBEntry; import jalview.datamodel.SequenceI; +import jalview.io.DataSourceType; +import jalview.io.StructureFile; import jalview.structure.StructureSelectionManager; import jalview.util.MessageManager; -import javax.swing.JOptionPane; - /** * GUI related routines for associating PDB files with sequences * @@ -43,31 +43,31 @@ public class AssociatePdbFileWithSeq * @param choice * @param sequence */ - public PDBEntry associatePdbWithSeq(String choice, String protocol, + public PDBEntry associatePdbWithSeq(String choice, DataSourceType file, SequenceI sequence, boolean prompt, StructureSelectionManagerProvider ssmp) { PDBEntry entry = new PDBEntry(); - MCview.PDBfile pdbfile = null; + StructureFile pdbfile = null; pdbfile = StructureSelectionManager.getStructureSelectionManager(ssmp) .setMapping(false, new SequenceI[] - { sequence }, null, choice, protocol); + { sequence }, null, choice, file); if (pdbfile == null) { // stacktrace already thrown so just return return null; } - if (pdbfile.id == null) + if (pdbfile.getId() == null) { String reply = null; if (prompt) { - reply = JOptionPane.showInternalInputDialog(Desktop.desktop, + reply = JvOptionPane.showInternalInputDialog(Desktop.desktop, MessageManager .getString("label.couldnt_find_pdb_id_in_file"), MessageManager.getString("label.no_pdb_id_in_file"), - JOptionPane.QUESTION_MESSAGE); + JvOptionPane.QUESTION_MESSAGE); } if (reply == null) { @@ -78,7 +78,7 @@ public class AssociatePdbFileWithSeq } else { - entry.setId(pdbfile.id); + entry.setId(pdbfile.getId()); } entry.setType(PDBEntry.Type.FILE);