|
|
|
@ -70,7 +70,7 @@ public class DesignModuleFactory {
|
|
|
|
|
|
|
|
|
|
@NotNull |
|
|
|
|
public static NameableCreator[] getCreators4Hyperlink() { |
|
|
|
|
return instance.creators4Hyperlink == null? new NameableCreator[0]:instance.creators4Hyperlink; |
|
|
|
|
return instance.creators4Hyperlink == null ? new NameableCreator[0] : instance.creators4Hyperlink; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void registerExtraWidgetOptions(WidgetOption[] options) { |
|
|
|
@ -117,10 +117,17 @@ public class DesignModuleFactory {
|
|
|
|
|
public static Class getNewFormAction() { |
|
|
|
|
return instance.newFormAction; |
|
|
|
|
} |
|
|
|
|
public static void registerReplaceActionClass(Class r){ |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 注册一下查找替换 |
|
|
|
|
* |
|
|
|
|
* @param r |
|
|
|
|
*/ |
|
|
|
|
public static void registerReplaceActionClass(Class r) { |
|
|
|
|
instance.ITReplaceAction = r; |
|
|
|
|
} |
|
|
|
|
public static Class getITReplaceAction(){ |
|
|
|
|
|
|
|
|
|
public static Class getITReplaceAction() { |
|
|
|
|
return instance.ITReplaceAction; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|