⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jahiawebappswarpackage.java

📁 java 写的一个新闻发布系统
💻 JAVA
字号:
////                                   ____.//                       __/\ ______|    |__/\.     _______//            __   .____|    |       \   |    +----+       \//    _______|  /--|    |    |    -   \  _    |    :    -   \_________//   \\______: :---|    :    :           |    :    |         \________>//           |__\---\_____________:______:    :____|____:_____\//                                      /_____|////                 . . . i n   j a h i a   w e   t r u s t . . .////////  JahiaWebAppsWarPackage////  NK      16.01.2001////package org.jahia.data.webapps;import java.io.*;import java.util.*;/** * Holds Informations about a webapps war package * * * @author Khue ng * @version 1.0 */public class JahiaWebAppsWarPackage {   /** The WebApps list *    * @associates JahiaWebAppDef*/   private Vector m_WebApps = new Vector();          /** The ContextRoot for all the web apps within the war file **/   private String m_ContextRoot ;      /**    * Constructor    *     * @param (String) contextRoot , the context root of the web apps    */	public JahiaWebAppsWarPackage ( String contextRoot ) {	   m_ContextRoot = contextRoot;	}       /**    * Get the WebApps List     *    * @return (Vector) the Vector of webapps list    */   public Vector getWebApps(){            return m_WebApps;      }    /**    * Add a WebApps Definition in the Web Apps list    *    * @param (JahiaWebAppDef) webAppDef    */   public void addWebAppDef(JahiaWebAppDef webAppDef ){            m_WebApps.add(webAppDef);      }       /**    * Returns the Context Root of this package    *    * @return (String) the context root    */       public String getContextRoot(){            return m_ContextRoot;         }            } // end JahiaWebAppWarPackage

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -