|
|
|
@ -6,6 +6,7 @@ package com.fr.design.parameter;
|
|
|
|
|
import com.fr.base.BaseFormula; |
|
|
|
|
import com.fr.base.StoreProcedureParameter; |
|
|
|
|
import com.fr.base.Utils; |
|
|
|
|
import com.fr.base.i18n.BidiUtils; |
|
|
|
|
import com.fr.data.impl.storeproc.StoreProcedureConstants; |
|
|
|
|
import com.fr.design.dialog.BasicPane; |
|
|
|
|
import com.fr.design.editor.ValueEditorPane; |
|
|
|
@ -110,7 +111,7 @@ public class ParameterInputPane extends BasicPane {
|
|
|
|
|
if (StringUtils.isNotBlank(parameter.getName())) { |
|
|
|
|
parameterDisplayName = parameter.getName(); |
|
|
|
|
} |
|
|
|
|
contentPane.add(flowTableLayoutHelper.createLabelFlowPane(parameterDisplayName + ":", editPane)); |
|
|
|
|
contentPane.add(flowTableLayoutHelper.createLabelFlowPane(BidiUtils.concatenateStrings(parameterDisplayName + ":"), editPane)); |
|
|
|
|
|
|
|
|
|
//add editor to parameter hashtable.
|
|
|
|
|
initTextListener(textF); |
|
|
|
@ -217,7 +218,7 @@ public class ParameterInputPane extends BasicPane {
|
|
|
|
|
|
|
|
|
|
UILabel textLabel = new UILabel(text); |
|
|
|
|
centerPane.add(textLabel); |
|
|
|
|
textLabel.setHorizontalAlignment(SwingConstants.LEFT); |
|
|
|
|
textLabel.setHorizontalAlignment(SwingConstants.LEADING); |
|
|
|
|
|
|
|
|
|
this.labelList.add(textLabel); |
|
|
|
|
centerPane.add(comp); |
|
|
|
|