2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.uimodel;
23 public class AlignAnalysisUIText
26 private String serviceType;
28 public String getServiceType()
35 private String calcId;
37 public String getCalcId()
42 private String AAconToggle, AAconToggleTooltip, AAeditSettings,
43 AAeditSettingsTooltip;
66 public AlignAnalysisUIText(String serviceType, Class<?> client,
67 String calcId, boolean acceptNucl, boolean acceptProt,
68 boolean acceptGaps, String toggle, String toggleTooltip,
69 String settings, String settingsTooltip)
71 this.serviceType = serviceType;
77 this.AAconToggle = toggle;
78 this.AAconToggleTooltip = toggleTooltip;
79 this.AAeditSettings = settings;
80 this.AAeditSettingsTooltip = settingsTooltip;
83 public Class getClient()
88 public void setClient(Class client)
93 public String getAAconToggle()
98 public void setAAconToggle(String aAconToggle)
100 AAconToggle = aAconToggle;
103 public String getAAconToggleTooltip()
105 return AAconToggleTooltip;
108 public void setAAconToggleTooltip(String aAconToggleTooltip)
110 AAconToggleTooltip = aAconToggleTooltip;
113 public String getAAeditSettings()
115 return AAeditSettings;
118 public void setAAeditSettings(String aAeditSettings)
120 AAeditSettings = aAeditSettings;
123 public String getAAeditSettingsTooltip()
125 return AAeditSettingsTooltip;
128 public void setAAeditSettingsTooltip(String aAeditSettingsTooltip)
130 AAeditSettingsTooltip = aAeditSettingsTooltip;