taverna-results-view/src/main/java/org/apache/taverna/workbench/views/results/ReportView.java [271:288]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			explanation.setColumns(40);
			explanation.setEditable(false);
			explanation.setOpaque(false);
			explanation.setBorder(new EmptyBorder(5, 20, 5, 20));
			explanation.setFocusable(false);
			explanation.setFont(new JLabel().getFont()); // make the font the same as for other
															// components in the dialog
			panel.add(explanation, NORTH);
			final Map<String, JCheckBox> inputChecks = new HashMap<>();
			final Map<String, JCheckBox> outputChecks = new HashMap<>();
			final Map<JCheckBox, Path> checkReferences = new HashMap<>();
			final Map<String, Path> chosenReferences = new HashMap<>();
			final Set<Action> actionSet = new HashSet<>();

			ItemListener listener = new ItemListener() {
				@Override
				public void itemStateChanged(ItemEvent e) {
					JCheckBox source = (JCheckBox) e.getItemSelectable();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



taverna-results-view/src/main/java/org/apache/taverna/workbench/views/results/workflow/WorkflowResultsComponent.java [182:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		explanation.setColumns(40);
		explanation.setEditable(false);
		explanation.setOpaque(false);
		explanation.setBorder(new EmptyBorder(5, 20, 5, 20));
		explanation.setFocusable(false);
		explanation.setFont(new JLabel().getFont()); // make the font the same as for other components in the dialog
		panel.add(explanation, NORTH);
		final Map<String, JCheckBox> inputChecks = new HashMap<>();
		final Map<String, JCheckBox> outputChecks = new HashMap<>();
		final Map<JCheckBox, Path> checkReferences = new HashMap<>();
		final Map<String, Path> chosenReferences = new HashMap<>();
		final Set<Action> actionSet = new HashSet<>();

		ItemListener listener = new ItemListener() {
			@Override
			public void itemStateChanged(ItemEvent e) {
				JCheckBox source = (JCheckBox) e.getItemSelectable();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



