|
|
|
@ -47,6 +47,7 @@ public class DesignModuleFactory {
|
|
|
|
|
private Class<MiddleChartDialog> autoChartDialogClass; |
|
|
|
|
private Class<? extends BaseChartPropertyPane> chartPropertyPaneClass; |
|
|
|
|
private Class newFormAction; |
|
|
|
|
private Class ITReplaceAction; |
|
|
|
|
private Class formParaDesigner; |
|
|
|
|
private Class paraPropertyPane; |
|
|
|
|
private Class<? extends HierarchyTreePane> formHierarchyPaneCls; |
|
|
|
@ -116,6 +117,12 @@ public class DesignModuleFactory {
|
|
|
|
|
public static Class getNewFormAction() { |
|
|
|
|
return instance.newFormAction; |
|
|
|
|
} |
|
|
|
|
public static void registerReplaceActionClass(Class r){ |
|
|
|
|
instance.ITReplaceAction = r; |
|
|
|
|
} |
|
|
|
|
public static Class getITReplaceAction(){ |
|
|
|
|
return instance.ITReplaceAction; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void registerParaPropertyPaneClass(Class p) { |
|
|
|
|
instance.paraPropertyPane = p; |
|
|
|
|