X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FAlignViewportI.java;h=df57cc0b06554ec4f7d2de6b70a17b7060699821;hb=fc2dbe249bddd693c94bfa88b3468abc41c6d80b;hp=f40b73b1c62ab4ca0a40868551656621739216d5;hpb=3f06233fb50a383439b4e0f28405b8681c2e2d72;p=jalview.git diff --git a/src/jalview/api/AlignViewportI.java b/src/jalview/api/AlignViewportI.java index f40b73b..df57cc0 100644 --- a/src/jalview/api/AlignViewportI.java +++ b/src/jalview/api/AlignViewportI.java @@ -235,11 +235,30 @@ public interface AlignViewportI extends ViewStyleI * This method returns the visible alignment as text, as seen on the GUI, ie * if columns are hidden they will not be returned in the result. Use this for * calculating trees, PCA, redundancy etc on views which contain hidden + * columns. This method doesn't exclude hidden sequences from the output. + * + * @param selectedRegionOnly + * - determines if only the selected region or entire alignment is + * exported + * @return String[] + */ + String[] getViewAsString(boolean selectedRegionOnly); + + /** + * This method returns the visible alignment as text, as seen on the GUI, ie + * if columns are hidden they will not be returned in the result. Use this for + * calculating trees, PCA, redundancy etc on views which contain hidden * columns. * + * @param selectedRegionOnly + * - determines if only the selected region or entire alignment is + * exported + * @param isExportHiddenSeqs + * - determines if hidden sequences would be exported or not. + * * @return String[] */ - String[] getViewAsString(boolean selectedRegionOnly); + String[] getViewAsString(boolean selectedRegionOnly, boolean isExportHiddenSeqs); void setSelectionGroup(SequenceGroup sg); @@ -376,20 +395,14 @@ public interface AlignViewportI extends ViewStyleI */ void setFollowHighlight(boolean b); - /** - * Set whether hidden Sequences should be trimmed off during an export - * operation. - * - * @param isExportHiddenSeqs - */ - public void setExportHiddenSeqs(boolean isExportHiddenSeqs); + + public void applyFeaturesStyle(FeatureSettingsModelI featureSettings); /** - * If true hidden Sequences are exported otherwise they aren't + * check if current selection group is defined on the view, or is simply a + * temporary group. * - * @return + * @return true if group is defined on the alignment */ - public boolean isExportHiddenSeqs(); - - public void applyFeaturesStyle(FeatureSettingsModelI featureSettings); + boolean isSelectionDefinedGroup(); }