130 lines
3.4 KiB
Java
130 lines
3.4 KiB
Java
/*
|
|
* The contents of this file are subject to the Mozilla Public License Version 1.1
|
|
* (the "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
* language governing rights and limitations under the License.
|
|
*
|
|
* The Original Code is the Venice Web Communities System.
|
|
*
|
|
* The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
|
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
* Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
package com.silverwrist.venice.ui.sidebox;
|
|
|
|
import java.io.IOException;
|
|
import java.util.*;
|
|
import org.w3c.dom.*;
|
|
import com.silverwrist.util.*;
|
|
import com.silverwrist.venice.core.*;
|
|
import com.silverwrist.venice.except.*;
|
|
import com.silverwrist.venice.ui.*;
|
|
|
|
public class JSPSideBox implements ContentJSP
|
|
{
|
|
/*--------------------------------------------------------------------------------
|
|
* Attributes
|
|
*--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
private JSPSideBoxFactory factory;
|
|
private VeniceEngine engine;
|
|
private UserContext uc;
|
|
|
|
/*--------------------------------------------------------------------------------
|
|
* Constructor
|
|
*--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
JSPSideBox(JSPSideBoxFactory factory, VeniceEngine engine, UserContext uc)
|
|
{
|
|
this.factory = factory;
|
|
this.engine = engine;
|
|
this.uc = uc;
|
|
|
|
} // end constructor
|
|
|
|
/*--------------------------------------------------------------------------------
|
|
* Implementations from interface Content
|
|
*--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
public boolean needFrame()
|
|
{
|
|
return false;
|
|
|
|
} // end needFrame
|
|
|
|
public int getMenuSelector()
|
|
{
|
|
return MENU_SELECTOR_NOCHANGE;
|
|
|
|
} // end getMenuSelector
|
|
|
|
public String getPageTitle(RequestOutput ro)
|
|
{
|
|
return factory.getTitle(uc.isLoggedIn(),ro);
|
|
|
|
} // end getPageTitle
|
|
|
|
public String getPageQID()
|
|
{
|
|
return null;
|
|
|
|
} // end getPageQID
|
|
|
|
/*--------------------------------------------------------------------------------
|
|
* Implementations from interface ContentJSP
|
|
*--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
public String getJSPName()
|
|
{
|
|
return factory.getTargetJSPName();
|
|
|
|
} // end getJSPName
|
|
|
|
public void initialize(RequestInput req)
|
|
{ // do nothing
|
|
} // end initialize
|
|
|
|
public void terminate(RequestInput req)
|
|
{ // do nothing
|
|
} // end terminate
|
|
|
|
/*--------------------------------------------------------------------------------
|
|
* External operations
|
|
*--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
public final VeniceEngine getEngine()
|
|
{
|
|
return engine;
|
|
|
|
} // end getEngine
|
|
|
|
public final UserContext getUser()
|
|
{
|
|
return uc;
|
|
|
|
} // end getUser
|
|
|
|
public final String getString(String key)
|
|
{
|
|
return factory.getString(key);
|
|
|
|
} // end getString
|
|
|
|
public final String replaceStrings(String base)
|
|
{
|
|
return factory.replaceStrings(base);
|
|
|
|
} // end replaceStrings
|
|
|
|
} // end class JSPSideBox
|