📄 tomcatwebappresult.java
字号:
/* * Created by IntelliJ IDEA. * User: novotny * Date: Dec 23, 2002 * Time: 1:18:04 AM * To change template for new class use * Code Style | Class Templates options (Tools | IDE Options). */package org.gridsphere.services.core.tomcat;import java.util.List;import java.util.Vector;public class TomcatWebAppResult { private String returnCode = "ERROR"; private String description = ""; private List webAppDescriptions = new Vector(); public TomcatWebAppResult() { } public TomcatWebAppResult(String returnCode, String description) { this.returnCode = returnCode; this.description = description; } public String getReturnCode() { return returnCode; } public String getDescription() { return description; } public void addWebAppDescriptor(String line) { TomcatWebAppDescription description = new TomcatWebAppDescription(line); webAppDescriptions.add(description); } public List getWebAppDescriptions() { return webAppDescriptions; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -