Changeset 4097
- Timestamp:
- Jan 21, 2011, 2:28:38 PM (12 years ago)
- Location:
- trunk/client/servlet/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/locale/en/dictionary
r4091 r4097 245 245 HitsComparisonOnlyUseLeadingProteins=Only use leading proteins 246 246 HitsComparisonReportBtn=Hits Comparison Report 247 HitsComparisonReportComparisonType= Hits Comparison Report -Comparison type247 HitsComparisonReportComparisonType=Comparison type 248 248 HitsComparisonReportComparisonTypeSelect=Comparison type 249 HitsComparisonReportFilterSettings1=Hit s Comparison Report - Filter Settings Hit Selection 1250 HitsComparisonReportFilterSettings2=Hit s Comparison Report - Filter Settings Hit Selection 2249 HitsComparisonReportFilterSettings1=Hit Selection 1 - Filter Settings 250 HitsComparisonReportFilterSettings2=Hit Selection 2 - Filter Settings 251 251 HitsComparisonReportFilterSettings=Hits Comparison Report - Filter Settings 252 252 HitsComparisonReport=Hits Comparison Report 253 HitsComparisonReportOutput= Hits Comparison Report -Output253 HitsComparisonReportOutput=Output 254 254 HitsComparisonReportProject1CombinedFDRUpperCutoff=Combined Search FDR 255 HitsComparisonReportProject1= Hit Selection 1Project255 HitsComparisonReportProject1=Project 256 256 HitsComparisonReportProject1Id=Project ID 257 257 HitsComparisonReportProject1Name=Project Name 258 258 HitsComparisonReportProject2CombinedFDRUpperCutoff=Combined Search FDR 259 HitsComparisonReportProject2= Hit Selection 2Project259 HitsComparisonReportProject2=Project 260 260 HitsComparisonReportProject2Id=Project ID 261 261 HitsComparisonReportProject2Name=Project Name 262 262 HitsComparisonReportProjectSelection=Hits Comparison Report - Project Selection 263 HitsComparisonReportProteinSettings=Hits Comparison Report - Protein Comparison Settings Only 263 HitsComparisonReportProjectSelection1=Hit Selection 1 - Project Selection 264 HitsComparisonReportProjectSelection2=Hit Selection 2 - Project Selection 265 HitsComparisonReportProteinSettings=Protein Comparison Settings Only 264 266 HitsComparisonReportScoreTypeSelect=Score Type 267 HitsComparisonReportStep1=Hits Comparison Report - Step 1 of 2 268 HitsComparisonReportStep2=Hits Comparison Report - Step 2 of 2 265 269 HitSelectionNumber=Hit Selection # 266 270 Hits=Hits -
trunk/client/servlet/src/org/proteios/action/hit/HitsComparisonReport.java
r3853 r4097 95 95 throws ActionException, InvalidParameterValue 96 96 { 97 97 ColumnContainer cc; 98 98 99 99 cc = new ColumnContainer(); 100 100 DbControl dc = newDbControl(); 101 101 Project project = isProjectActive(dc); … … 128 128 // Get form 129 129 Form form = new HitComparisonForm(project, project1, project2, filenamePrefixDefault); 130 String pageTitle = new String("HitsComparisonReport ");130 String pageTitle = new String("HitsComparisonReportStep2"); 131 131 Title title = new Title(pageTitle); 132 132 // Instruction area … … 155 155 RowLayout layout = getLayoutFactory().getRowLayout(); 156 156 layout.add(title); 157 158 157 cc.add(form); 158 cc.add(instructionArea); 159 159 layout.add(cc); 160 160 setLayout(layout); -
trunk/client/servlet/src/org/proteios/action/hit/HitsComparisonReportStep1.java
r4016 r4097 71 71 throws ActionException, InvalidParameterValue 72 72 { 73 73 ColumnContainer cc; 74 74 75 75 cc = new ColumnContainer(); 76 76 77 77 // Default filename prefix … … 124 124 // Get form 125 125 Form form = new ProjectComparisonForm(project, hitProjList); 126 String pageTitle = new String("HitsComparisonReport ProjectSelection");126 String pageTitle = new String("HitsComparisonReportStep1"); 127 127 Title title = new Title(pageTitle); 128 128 // Instruction area … … 145 145 */ 146 146 RowLayout layout = getLayoutFactory().getRowLayout(); 147 148 147 cc.add(form); 148 cc.add(instructionArea); 149 149 150 150 layout.add(title); -
trunk/client/servlet/src/org/proteios/gui/form/ProjectComparisonForm.java
r3849 r4097 37 37 public class ProjectComparisonForm extends Form 38 38 { 39 public final Fieldset fs ;39 public final Fieldset fs1, fs2; 40 40 public final Select<VInteger> project1SelectBox; 41 41 public final Select<VInteger> project2SelectBox; … … 44 44 { 45 45 super("comparisonOfHitsReportProjectSelectionForm"); 46 fs = new Fieldset("HitsComparisonReportProjectSelection");47 addFieldset(fs);48 46 49 47 // Project 1 selection 48 fs1 = new Fieldset("HitsComparisonReportProjectSelection1"); 49 addFieldset(fs1); 50 50 project1SelectBox = new Project1Select(project, projectList); 51 51 project1SelectBox.setLabel("HitsComparisonReportProject1"); 52 fs .add(project1SelectBox);52 fs1.add(project1SelectBox); 53 53 // Project 2 selection 54 fs2 = new Fieldset("HitsComparisonReportProjectSelection2"); 55 addFieldset(fs2); 54 56 project2SelectBox = new Project2Select(project, projectList); 55 57 project2SelectBox.setLabel("HitsComparisonReportProject2"); 56 fs .add(project2SelectBox);58 fs2.add(project2SelectBox); 57 59 } 58 60 }
Note: See TracChangeset
for help on using the changeset viewer.