diff --git a/.classpath b/.classpath index 4fbb42b..0f8006b 100644 --- a/.classpath +++ b/.classpath @@ -1,8 +1,8 @@ - - - + + + @@ -12,8 +12,8 @@ - - - + + + diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..463c03e --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/git_toolbox_blame.xml b/.idea/git_toolbox_blame.xml new file mode 100644 index 0000000..7dc1249 --- /dev/null +++ b/.idea/git_toolbox_blame.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/git_toolbox_prj.xml b/.idea/git_toolbox_prj.xml new file mode 100644 index 0000000..02b915b --- /dev/null +++ b/.idea/git_toolbox_prj.xml @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d7b5d73 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF index dec50fb..deae0aa 100644 --- a/META-INF/MANIFEST.MF +++ b/META-INF/MANIFEST.MF @@ -36,3 +36,4 @@ Bundle-ClassPath: poi_lib/aspose-words-17.4.0-jdk16.jar, poi_lib/axis2-ant-plugin-1.6.2.jar, poi_lib/antlr-2.7.7.jar, poi_lib/commons-io-1.4.jar +Export-Package: com.connor.plm diff --git a/bin/com/connor/plm/KUtil.class b/bin/com/connor/plm/KUtil.class index ca2e675..bb1c1ea 100644 Binary files a/bin/com/connor/plm/KUtil.class and b/bin/com/connor/plm/KUtil.class differ diff --git a/bin/com/connor/plm/sample/DatasetSaveAsOperation.class b/bin/com/connor/plm/sample/DatasetSaveAsOperation.class index 67bc26c..e8b7e29 100644 Binary files a/bin/com/connor/plm/sample/DatasetSaveAsOperation.class and b/bin/com/connor/plm/sample/DatasetSaveAsOperation.class differ diff --git a/bin/com/connor/plm/sb02/DerivedChangeRequestDialog.class b/bin/com/connor/plm/sb02/DerivedChangeRequestDialog.class index 062fc19..ae1c271 100644 Binary files a/bin/com/connor/plm/sb02/DerivedChangeRequestDialog.class and b/bin/com/connor/plm/sb02/DerivedChangeRequestDialog.class differ diff --git a/plugin.xml b/plugin.xml index ae07695..d2a32db 100644 --- a/plugin.xml +++ b/plugin.xml @@ -14,9 +14,9 @@ class="com.connor.plm.sample.DatasetSaveAsHandler" commandId="com.connor.plm.sample.DatasetSaveAsHandler"> - - - + + + 0) { - action=actionName.substring(0,ind); - actionData=actionName.substring(ind+1); + action=actionName.substring(0,ind);//actionName中,#号前面的内容 + actionData=actionName.substring(ind+1);//actionName中,#号后面的内容 } Class c = Class.forName(action); Constructor constructor = c.getConstructor(AbstractAIFApplication.class, String.class,String.class);