X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fstructure%2FStructureSelectionManager.java;h=bbee3b703241b88e34b813cf2793419b67a243b4;hb=2f4f1d8fb6878271b64f327bc58c895f458137af;hp=f9e8fdba4db2f673da6c0c458a6c8a912d758d55;hpb=a45774ee31d9f35d4eff46d54d7deab719afb092;p=jalview.git diff --git a/src/jalview/structure/StructureSelectionManager.java b/src/jalview/structure/StructureSelectionManager.java index f9e8fdb..bbee3b7 100644 --- a/src/jalview/structure/StructureSelectionManager.java +++ b/src/jalview/structure/StructureSelectionManager.java @@ -1,19 +1,20 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - * + * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.structure; @@ -28,37 +29,65 @@ import jalview.datamodel.*; public class StructureSelectionManager { - static IdentityHashMap instances; + static IdentityHashMap instances; StructureMapping[] mappings; /** * debug function - write all mappings to stdout */ - public void reportMapping() { - if (mappings==null) - { - System.err.println("reportMapping: No PDB/Sequence mappings."); - }else{ - System.err.println("reportMapping: There are "+mappings.length+" mappings."); - for (int m=0;m(); + instances = new java.util.IdentityHashMap(); } - StructureSelectionManager instance=instances.get(context); - if (instance==null) + StructureSelectionManager instance = instances.get(context); + if (instance == null) { - instances.put(context, instance=new StructureSelectionManager()); + if (nullProvider!=null) + { + instance = nullProvider; + } else { + instance = new StructureSelectionManager(); + } + instances.put(context, instance); } return instance; } @@ -96,6 +125,7 @@ public class StructureSelectionManager /** * register a listener for alignment sequence mouseover events + * * @param svl */ public void addStructureViewerListener(Object svl) @@ -152,7 +182,7 @@ public class StructureSelectionManager ex.printStackTrace(); return null; } - + String targetChain; for (int s = 0; s < sequence.length; s++) { @@ -190,7 +220,8 @@ public class StructureSelectionManager for (int i = 0; i < pdb.chains.size(); i++) { PDBChain chain = ((PDBChain) pdb.chains.elementAt(i)); - if (targetChain.length() > 0 && !targetChain.equals(chain.id) && !infChain) + if (targetChain.length() > 0 && !targetChain.equals(chain.id) + && !infChain) { continue; // don't try to map chains don't match. } @@ -249,7 +280,8 @@ public class StructureSelectionManager // allocate enough slots to store the mapping from positions in // sequence[s] to the associated chain - int[][] mapping = new int[sequence[s].findPosition(sequence[s].getLength()) + 2][2]; + int[][] mapping = new int[sequence[s].findPosition(sequence[s] + .getLength()) + 2][2]; int resNum = -10000; int index = 0; @@ -295,15 +327,16 @@ public class StructureSelectionManager listeners.removeElement(svl); if (svl instanceof SequenceListener) { - for (int i=0;i view_listeners=new Vector(); - public synchronized void sendViewPosition(jalview.api.AlignmentViewPanel source, int startRes, - int endRes, int startSeq, int endSeq) + + Vector view_listeners = new Vector(); + + public synchronized void sendViewPosition( + jalview.api.AlignmentViewPanel source, int startRes, int endRes, + int startSeq, int endSeq) { if (view_listeners != null && view_listeners.size() > 0) { - Enumeration listeners = view_listeners.elements(); + Enumeration listeners = view_listeners + .elements(); while (listeners.hasMoreElements()) { - AlignmentViewPanelListener slis = listeners - .nextElement(); + AlignmentViewPanelListener slis = listeners.nextElement(); if (slis != source) { slis.viewPosition(startRes, endRes, startSeq, endSeq, source); @@ -757,39 +799,41 @@ public class StructureSelectionManager } } } - - public void finalize() throws Throwable { - if (listeners!=null) { + public void finalize() throws Throwable + { + if (listeners != null) + { listeners.clear(); - listeners=null; + listeners = null; } - if (mappingData!=null) + if (mappingData != null) { mappingData.clear(); - mappingData=null; + mappingData = null; } - if (sel_listeners!=null) + if (sel_listeners != null) { sel_listeners.clear(); - sel_listeners=null; + sel_listeners = null; } - if (view_listeners!=null) + if (view_listeners != null) { view_listeners.clear(); - view_listeners=null; + view_listeners = null; } - mappings=null; - seqmappingrefs=null; + mappings = null; + seqmappingrefs = null; } /** * release all references associated with this manager provider + * * @param jalviewLite */ public static void release(StructureSelectionManagerProvider jalviewLite) { -// synchronized (instances) + // synchronized (instances) { if (instances == null) {