?? jsr181profile.java
字號:
package org.codehaus.xfire.gen.jsr181;import java.util.ArrayList;import java.util.List;import org.codehaus.xfire.gen.GeneratorPlugin;import org.codehaus.xfire.gen.PluginProfile;/** * Generates a service interface, service stub, and port accessor. * * @author Dan Diephouse */public class Jsr181Profile implements PluginProfile{ public List<GeneratorPlugin> getPlugins() { ArrayList<GeneratorPlugin> plugins = new ArrayList<GeneratorPlugin>(); plugins.add(new FaultGenerator()); plugins.add(new ServiceInterfaceGenerator()); plugins.add(new ServiceStubGenerator()); plugins.add(new PortGenerator()); plugins.add(new ServiceDescriptorGenerator()); return plugins; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -