alibaba / compileflow-idea-designer

基于IntelliJ IDEA流程可视化插件: a good idea-plugin for Alibaba Compileflow process engine.
Apache License 2.0
314 stars 74 forks source link

生成代码,在调用静态方法的时候,可以优化 #8

Open wangchaomail opened 4 years ago

wangchaomail commented 4 years ago

对节点使用Java类型的代码调用的时候,获取实例类的方法,存在优化的可能,如果方法是静态的方法,不需要获取实例。 date = ((Date)ObjectFactory.getInstance("java.util.Date")).getDate(); 应该为: date =java.util.Date.getDate();