Author: mbenson
Date: Mon Aug 13 17:45:12 2007
New Revision: 565590
URL: http://svn.apache.org/viewvc?view=rev&rev=565590
Log:
remove doubled closing javadoc asterisks
Modified:
commons/proper/el/trunk/src/java/org/apache/commons/el/ImplicitObjects.java
Modified:
commons/proper/el/trunk/src/java/org/apache/commons/el/ImplicitObjects.java
URL:
http://svn.apache.org/viewvc/commons/proper/el/trunk/src/java/org/apache/commons/el/ImplicitObjects.java?view=diff&rev=565590&r1=565589&r2=565590
==============================================================================
--- commons/proper/el/trunk/src/java/org/apache/commons/el/ImplicitObjects.java
(original)
+++ commons/proper/el/trunk/src/java/org/apache/commons/el/ImplicitObjects.java
Mon Aug 13 17:45:12 2007
@@ -35,7 +35,7 @@
*
* @author Nathan Abramson - Art Technology Group
* @version $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author$
- **/
+ */
public class ImplicitObjects {
// -------------------------------------
// Constants
@@ -63,7 +63,7 @@
/**
*
* Constructor
- **/
+ */
public ImplicitObjects(PageContext pContext) {
mContext = pContext;
}
@@ -73,7 +73,7 @@
*
* Finds the ImplicitObjects associated with the PageContext,
* creating it if it doesn't yet exist.
- **/
+ */
public static ImplicitObjects getImplicitObjects(PageContext pContext) {
ImplicitObjects objs = (ImplicitObjects) pContext.getAttribute(
sAttributeName, PageContext.PAGE_SCOPE);
@@ -88,7 +88,7 @@
/**
*
* Returns the Map that "wraps" page-scoped attributes
- **/
+ */
public Map getPageScopeMap() {
if (mPage == null) {
mPage = createPageScopeMap(mContext);
@@ -100,7 +100,7 @@
/**
*
* Returns the Map that "wraps" request-scoped attributes
- **/
+ */
public Map getRequestScopeMap() {
if (mRequest == null) {
mRequest = createRequestScopeMap(mContext);
@@ -112,7 +112,7 @@
/**
*
* Returns the Map that "wraps" session-scoped attributes
- **/
+ */
public Map getSessionScopeMap() {
if (mSession == null) {
mSession = createSessionScopeMap(mContext);
@@ -124,7 +124,7 @@
/**
*
* Returns the Map that "wraps" application-scoped attributes
- **/
+ */
public Map getApplicationScopeMap() {
if (mApplication == null) {
mApplication = createApplicationScopeMap(mContext);
@@ -137,7 +137,7 @@
*
* Returns the Map that maps parameter name to a single parameter
* values.
- **/
+ */
public Map getParamMap() {
if (mParam == null) {
mParam = createParamMap(mContext);
@@ -150,7 +150,7 @@
*
* Returns the Map that maps parameter name to an array of parameter
* values.
- **/
+ */
public Map getParamsMap() {
if (mParams == null) {
mParams = createParamsMap(mContext);
@@ -163,7 +163,7 @@
*
* Returns the Map that maps header name to a single header
* values.
- **/
+ */
public Map getHeaderMap() {
if (mHeader == null) {
mHeader = createHeaderMap(mContext);
@@ -176,7 +176,7 @@
*
* Returns the Map that maps header name to an array of header
* values.
- **/
+ */
public Map getHeadersMap() {
if (mHeaders == null) {
mHeaders = createHeadersMap(mContext);
@@ -189,7 +189,7 @@
*
* Returns the Map that maps init parameter name to a single init
* parameter values.
- **/
+ */
public Map getInitParamMap() {
if (mInitParam == null) {
mInitParam = createInitParamMap(mContext);
@@ -202,7 +202,7 @@
*
* Returns the Map that maps cookie name to the first matching
* Cookie in request.getCookies().
- **/
+ */
public Map getCookieMap() {
if (mCookie == null) {
mCookie = createCookieMap(mContext);
@@ -216,7 +216,7 @@
/**
*
* Creates the Map that "wraps" page-scoped attributes
- **/
+ */
public static Map createPageScopeMap(PageContext pContext) {
final PageContext context = pContext;
return new EnumeratedMap() {
@@ -243,7 +243,7 @@
/**
*
* Creates the Map that "wraps" request-scoped attributes
- **/
+ */
public static Map createRequestScopeMap(PageContext pContext) {
final PageContext context = pContext;
return new EnumeratedMap() {
@@ -271,7 +271,7 @@
/**
*
* Creates the Map that "wraps" session-scoped attributes
- **/
+ */
public static Map createSessionScopeMap(PageContext pContext) {
final PageContext context = pContext;
return new EnumeratedMap() {
@@ -299,7 +299,7 @@
/**
*
* Creates the Map that "wraps" application-scoped attributes
- **/
+ */
public static Map createApplicationScopeMap(PageContext pContext) {
final PageContext context = pContext;
return new EnumeratedMap() {
@@ -328,7 +328,7 @@
*
* Creates the Map that maps parameter name to single parameter
* value.
- **/
+ */
public static Map createParamMap(PageContext pContext) {
final HttpServletRequest request = (HttpServletRequest) pContext
.getRequest();
@@ -356,7 +356,7 @@
*
* Creates the Map that maps parameter name to an array of parameter
* values.
- **/
+ */
public static Map createParamsMap(PageContext pContext) {
final HttpServletRequest request = (HttpServletRequest) pContext
.getRequest();
@@ -384,7 +384,7 @@
*
* Creates the Map that maps header name to single header
* value.
- **/
+ */
public static Map createHeaderMap(PageContext pContext) {
final HttpServletRequest request = (HttpServletRequest) pContext
.getRequest();
@@ -412,7 +412,7 @@
*
* Creates the Map that maps header name to an array of header
* values.
- **/
+ */
public static Map createHeadersMap(PageContext pContext) {
final HttpServletRequest request = (HttpServletRequest) pContext
.getRequest();
@@ -449,7 +449,7 @@
*
* Creates the Map that maps init parameter name to single init
* parameter value.
- **/
+ */
public static Map createInitParamMap(PageContext pContext) {
final ServletContext context = pContext.getServletContext();
return new EnumeratedMap() {
@@ -476,7 +476,7 @@
*
* Creates the Map that maps cookie name to the first matching
* Cookie in request.getCookies().
- **/
+ */
public static Map createCookieMap(PageContext pContext) {
// Read all the cookies and construct the entire map
HttpServletRequest request = (HttpServletRequest)
pContext.getRequest();