tomcatwebappresult.java
来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 46 行
JAVA
46 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?