|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
package com.fr.design.module; |
|
|
|
|
|
|
|
|
|
import com.fr.base.chart.BaseChartCollection; |
|
|
|
|
import com.fr.design.actions.help.replace.ITReplaceHelper; |
|
|
|
|
import com.fr.design.actions.help.replace.ITReplaceOperator; |
|
|
|
|
import com.fr.design.gui.chart.BaseChartPropertyPane; |
|
|
|
|
import com.fr.design.gui.chart.MiddleChartComponent; |
|
|
|
|
import com.fr.design.gui.chart.MiddleChartDialog; |
|
|
|
@ -51,7 +51,7 @@ public class DesignModuleFactory {
|
|
|
|
|
private Class ITReplaceAction; |
|
|
|
|
private Class formParaDesigner; |
|
|
|
|
private Class paraPropertyPane; |
|
|
|
|
private static ITReplaceHelper replaceHelper; |
|
|
|
|
private static ITReplaceOperator replaceHelper; |
|
|
|
|
private Class<? extends HierarchyTreePane> formHierarchyPaneCls; |
|
|
|
|
private Class<? extends BaseWidgetPropertyPane> widgetPropertyPane; |
|
|
|
|
private Class buttonDetailPaneClass; |
|
|
|
@ -137,7 +137,7 @@ public class DesignModuleFactory {
|
|
|
|
|
* 注册一下查找替换面板 |
|
|
|
|
* @param |
|
|
|
|
*/ |
|
|
|
|
public static void registerReplace(ITReplaceHelper replace) { |
|
|
|
|
public static void registerReplace(ITReplaceOperator replace) { |
|
|
|
|
replaceHelper = replace; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -145,7 +145,7 @@ public class DesignModuleFactory {
|
|
|
|
|
* 获取查找替换面板的操作类 |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
public static ITReplaceHelper getReplaceOperator() { |
|
|
|
|
public static ITReplaceOperator getReplaceOperator() { |
|
|
|
|
return replaceHelper; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|