jaxwsprofile.java
来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 24 行
JAVA
24 行
package org.codehaus.xfire.jaxws.gen;import java.util.ArrayList;import java.util.List;import org.codehaus.xfire.gen.GeneratorPlugin;import org.codehaus.xfire.gen.PluginProfile;import org.codehaus.xfire.gen.jsr181.ServiceStubGenerator;public class JAXWSProfile implements PluginProfile{ public List<GeneratorPlugin> getPlugins() { ArrayList<GeneratorPlugin> plugins = new ArrayList<GeneratorPlugin>(); plugins.add(new FaultGenerator()); plugins.add(new InterfaceGenerator()); plugins.add(new ServiceStubGenerator()); plugins.add(new ServiceGenerator()); return plugins; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?