Loeschen von debian, es werden keine einzelnen Module mehr als debian Pakete verteilt werden.
git-svn-id: https://svn.libreccm.org/ccm/trunk@151 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
1a15aa0d7c
commit
9a190a4fff
|
|
@ -1 +0,0 @@
|
||||||
usr/share/java/ccm-auth-http-6.3.0
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
# for eg Oracle jar
|
|
||||||
CLASSPATH=./lib/:$CLASSPATH
|
|
||||||
$ANT build-${name}
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
[ -f build.xml ] && $ANT clean-${appname}
|
|
||||||
|
|
||||||
rm -rf build build.xml ccm.classpath
|
|
||||||
|
|
||||||
# ccm-disperse.sh creates the .install files automatically, so let's clean them too.
|
|
||||||
|
|
||||||
rm -f ${appname}.install ${appname}-doc.install
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
if [ ! -L $name ]; then
|
|
||||||
ln -s . $name
|
|
||||||
fi
|
|
||||||
ccm-create-projectxml.pl > project.xml
|
|
||||||
ccm-configure.sh
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
SRCDIR="$1"
|
|
||||||
[ "x$SRCDIR" != "x" ] || exit 1
|
|
||||||
|
|
||||||
# automatically generate the .install file lists for dh_install:
|
|
||||||
|
|
||||||
(cd $SRCDIR && find . -type f \
|
|
||||||
| grep -v DEBIAN \
|
|
||||||
| grep -v var/www/html \
|
|
||||||
| sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install
|
|
||||||
|
|
||||||
(cd $SRCDIR && find . -type f -path './var/www/html/*' \
|
|
||||||
| sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install
|
|
||||||
|
|
||||||
# for some reason, dh_install doesn't work properly; let's disperse the files ourselves:
|
|
||||||
|
|
||||||
for pkg in ${name} ${name}-doc; do
|
|
||||||
# skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES
|
|
||||||
[ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true
|
|
||||||
|
|
||||||
# this should exist [due to dh_installdocs, dh_installchangelog], but just in case...
|
|
||||||
mkdir -p debian/$pkg
|
|
||||||
|
|
||||||
[ -e debian/${pkg}.install ] && \
|
|
||||||
echo -n "Dispersing files to debian/$pkg/ ... " && \
|
|
||||||
for file in `cat debian/${pkg}.install`; do
|
|
||||||
dir=`dirname $file`
|
|
||||||
mkdir -p debian/$pkg/$dir
|
|
||||||
cp $SRCDIR/$file debian/$pkg/$dir/
|
|
||||||
done
|
|
||||||
echo "done."
|
|
||||||
done
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
DESTDIR="$1"
|
|
||||||
[ "xDESTDIR" != "x" ] || exit 1
|
|
||||||
|
|
||||||
rm -rf $DESTDIR
|
|
||||||
mkdir -p $DESTDIR
|
|
||||||
mkdir -p $DESTDIR${confdir}
|
|
||||||
mkdir -p $DESTDIR/var/www/html/${name}-${version}
|
|
||||||
|
|
||||||
ANT_OPTS="-Dapps.${name}.version=${version}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api"
|
|
||||||
ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}"
|
|
||||||
export ANT_OPTS
|
|
||||||
|
|
||||||
$ANT deploy-jar-classes-${appname}
|
|
||||||
$ANT deploy-${appname}
|
|
||||||
|
|
||||||
rm -rf "$DESTDIR/tmp"
|
|
||||||
|
|
||||||
|
|
||||||
# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC
|
|
||||||
|
|
||||||
GENERATE_JAVADOC=true
|
|
||||||
if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then
|
|
||||||
GENERATE_JAVADOC=false
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d ${appname}/src ]; then
|
|
||||||
$ANT deploy-jar-classes-${appname}
|
|
||||||
[ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true
|
|
||||||
fi
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
# say which app to compile, amongst those specified in the project.xml
|
|
||||||
export CCM_APP=$name
|
|
||||||
|
|
||||||
# do some checks
|
|
||||||
|
|
||||||
check_JAVA_HOME
|
|
||||||
|
|
||||||
if [ "$name" = "ccm-core" ]; then
|
|
||||||
check_ORACLE_JDBC_LIB
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# set the environment
|
|
||||||
|
|
||||||
for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do
|
|
||||||
. $file
|
|
||||||
done
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null
|
|
||||||
cd -
|
|
||||||
export CCM_HOME=`pwd`
|
|
||||||
|
|
||||||
if which classic-ant > /dev/null 2>&1; then
|
|
||||||
ANT=classic-ant
|
|
||||||
else
|
|
||||||
ANT=ant
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# perhaps we don't like to build some packages -- get them from DH_OPTIONS
|
|
||||||
|
|
||||||
export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'`
|
|
||||||
|
|
||||||
# for now, assume that if we don't want to build some packages then we don't
|
|
||||||
# want to generate javadocs for them either
|
|
||||||
|
|
||||||
export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES"
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
# source the shell library [for the check_* functions]
|
|
||||||
# FIXME: ugly-looking hack.
|
|
||||||
orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND
|
|
||||||
DEBIAN_HAS_FRONTEND=1
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND
|
|
||||||
|
|
||||||
|
|
||||||
# variables we use [especially in ccm-install.sh]
|
|
||||||
|
|
||||||
name=ccm-auth-http
|
|
||||||
version=6.3.0
|
|
||||||
appname=ccm-auth-http
|
|
||||||
appversion=6.3.0
|
|
||||||
confdir="/etc/ccm/conf"
|
|
||||||
sharedjardir="/usr/share/java"
|
|
||||||
webappdir="/usr/share/java/webapps"
|
|
||||||
ccmclasspathfile="ccm/ccm.classpath"
|
|
||||||
ccmwebappfile="ccm/ccm.webapps"
|
|
||||||
|
|
||||||
. debian/ccm-settings-run.sh
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
ccm-auth-http (6.3.0-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Automatic update of version number from 6.2.0 to 6.3.0
|
|
||||||
|
|
||||||
-- Runtime Collective Ltd. <info@runtime-collective.com> Mon, 10 Oct 2005 13:51:54 +0000
|
|
||||||
|
|
||||||
ccm-auth-http (6.2.0-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Automatic update of version number from 1.4.2 to 6.2.0
|
|
||||||
|
|
||||||
-- Runtime Collective Ltd. <info@runtime-collective.com> Mon, 10 Oct 2005 12:29:57 +0000
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.2-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Automatic update of version number from 1.4.1 to 1.4.2
|
|
||||||
|
|
||||||
-- Runtime Collective Ltd. <info@runtime-collective.com> Thu, 31 Mar 2005 11:59:49 +0000
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.1-5) unstable; urgency=low
|
|
||||||
|
|
||||||
* Depend on "j2sdk1.4 | java2-compiler" rather than just java2-compiler
|
|
||||||
* Depend on "j2re1.4 | java2-runtime" rather than just java2-runtime
|
|
||||||
* Change maintainer to the mailing list and add david@runtime-collective.com
|
|
||||||
to the uploaders
|
|
||||||
|
|
||||||
-- David Pashley <david@runtime-collective.com> Tue, 18 Jan 2005 16:56:44 +0000
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.1-4) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/postrm: disabled the purge operations [had some weird problems].
|
|
||||||
* updated the debian control scripts to get the package name and version from their invocation.
|
|
||||||
|
|
||||||
-- Berkan Eskikaya <berkan@runtime-collective.com> Mon, 10 May 2004 12:33:33 +0100
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.1-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/templates: made load-at-install and setup-database-at-install the default behaviour.
|
|
||||||
* debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws.
|
|
||||||
* debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris].
|
|
||||||
* debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm".
|
|
||||||
* debian/config: added detection of the hostname of the machine and possibly the user's email.
|
|
||||||
* major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file.
|
|
||||||
|
|
||||||
-- Berkan Eskikaya <berkan@runtime-collective.com> Fri, 7 May 2004 13:04:43 +0100
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.1-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library.
|
|
||||||
* debian/ccm-clean.sh: only calls the ant process if build.xml exists.
|
|
||||||
* debian/{postinst,prerm,config,templates}: added debconf support
|
|
||||||
* debian/postinst: accepts 'reconfigure' and treats it as 'configure'.
|
|
||||||
* debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies.
|
|
||||||
* debian/postinst: removed some bashisms upon recommendation from lintian.
|
|
||||||
* debian/rules: enabled dh_installdebconf.
|
|
||||||
* debian/control: made the package depend on debconf.
|
|
||||||
|
|
||||||
-- Berkan Eskikaya <berkan@runtime-collective.com> Fri, 1 May 2004 15:41:43 +0100
|
|
||||||
|
|
||||||
|
|
||||||
ccm-auth-http (1.4.1-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Initial release.
|
|
||||||
|
|
||||||
-- Berkan Eskikaya <berkan@runtime-collective.com> Fri, 24 Apr 2004 12:27:56 +0100
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
4
|
|
||||||
|
|
@ -1,79 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
db_capb backup
|
|
||||||
|
|
||||||
HOSTNAME=`hostname -f` 2>/dev/null || true
|
|
||||||
|
|
||||||
if [ -n "$HOSTNAME" ]; then
|
|
||||||
db_metaget ccm/shared/waf_web_server default || true
|
|
||||||
PORTNUM=`echo $RET | cut -d: -f2`
|
|
||||||
db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$EMAIL" ]; then
|
|
||||||
db_set ccm/shared/waf_admin_email "$EMAIL" || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
STATE=1
|
|
||||||
LASTSTATE=5
|
|
||||||
|
|
||||||
while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do
|
|
||||||
case "$STATE" in
|
|
||||||
1)
|
|
||||||
# Database questions
|
|
||||||
db_input high ccm/shared/dbase_type || true
|
|
||||||
db_input high ccm/shared/dbase_host || true
|
|
||||||
db_input high ccm/shared/dbase_name || true
|
|
||||||
db_input high ccm/shared/dbase_user || true
|
|
||||||
db_input high ccm/shared/dbase_password || true
|
|
||||||
|
|
||||||
;;
|
|
||||||
2)
|
|
||||||
# Server address
|
|
||||||
db_input high ccm/shared/waf_web_server || true
|
|
||||||
;;
|
|
||||||
3)
|
|
||||||
# Admin questions
|
|
||||||
db_input high ccm/shared/waf_admin_email || true
|
|
||||||
db_input high ccm/shared/waf_admin_name_given || true
|
|
||||||
db_input high ccm/shared/waf_admin_name_family || true
|
|
||||||
db_input high ccm/shared/waf_admin_password || true
|
|
||||||
db_input high ccm/shared/waf_admin_password_question || true
|
|
||||||
db_input high ccm/shared/waf_admin_password_answer || true
|
|
||||||
;;
|
|
||||||
4)
|
|
||||||
# When to load the applications
|
|
||||||
db_input medium ccm/shared/ccm_load_apps_at_install_p || true
|
|
||||||
;;
|
|
||||||
5)
|
|
||||||
# Whether to set up the [local] database
|
|
||||||
db_get ccm/shared/dbase_host || true
|
|
||||||
if [ "$RET" = "localhost" ]; then
|
|
||||||
db_input medium ccm/shared/pg_set_up_database_p || true
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
# Add additional states here, making sure to
|
|
||||||
# increment LASTSTATE.
|
|
||||||
esac
|
|
||||||
|
|
||||||
if db_go; then
|
|
||||||
STATE=$(($STATE + 1))
|
|
||||||
else
|
|
||||||
STATE=$(($STATE - 1))
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
db_go || true
|
|
||||||
|
|
||||||
db_stop
|
|
||||||
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
Source: ccm-auth-http
|
|
||||||
Section: contrib/web
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Runtime Packaging <runtime-packaging@runtime-collective.com>
|
|
||||||
Uploaders: David Pashley <david@runtime-collective.com>
|
|
||||||
Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core
|
|
||||||
Standards-Version: 3.6.1
|
|
||||||
|
|
||||||
Package: ccm-auth-http
|
|
||||||
Architecture: all
|
|
||||||
Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core
|
|
||||||
Description: APLAWS: NTLM authentication module.
|
|
||||||
This package contains the Auth HTTP application for APLAWS.
|
|
||||||
.
|
|
||||||
FIXME: We need a longer and more meaningful description here.
|
|
||||||
|
|
||||||
Package: ccm-auth-http-doc
|
|
||||||
Architecture: all
|
|
||||||
Depends: ccm-tools
|
|
||||||
Description: Documentation for ccm-auth-http
|
|
||||||
Documentation for ccm-auth-http. Provides the JavaDoc API documentation.
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
This package was debianized by Berkan Eskikaya <berkan@runtime-collective.com> on
|
|
||||||
Tue, 13 Apr 2004 19:03:14 +0100.
|
|
||||||
|
|
||||||
It was downloaded from http://aplaws.sourceforge.net/
|
|
||||||
|
|
||||||
Upstream Authors: Redhat UK.
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
|
|
||||||
You are free to distribute this software under the terms of
|
|
||||||
the GNU General Public License.
|
|
||||||
On Debian systems, the complete text of the GNU General Public
|
|
||||||
License can be found in the file `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# postinst script for ccm-auth-http
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postinst> `configure' <most-recently-configured-version>
|
|
||||||
# * <old-postinst> `abort-upgrade' <new version>
|
|
||||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
||||||
# <new-version>
|
|
||||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
||||||
# <failed-install-package> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
#
|
|
||||||
# quoting from the policy:
|
|
||||||
# Any necessary prompting should almost always be confined to the
|
|
||||||
# post-installation script, and should be protected with a conditional
|
|
||||||
# so that unnecessary prompting doesn't happen if a package's
|
|
||||||
# installation fails and the `postinst' is called with `abort-upgrade',
|
|
||||||
# `abort-remove' or `abort-deconfigure'.
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure|reconfigure)
|
|
||||||
# FIXME: we need to be sensitive to upgrade operations here.
|
|
||||||
# basically, if pkgversion = appversion, then the datamodel
|
|
||||||
# hasn't changed -- we just configure the package and don't
|
|
||||||
# touch the database; else, we need to also update the
|
|
||||||
# datamodel in the database.
|
|
||||||
|
|
||||||
|
|
||||||
### get the settings for the operations below
|
|
||||||
|
|
||||||
ccm_set_env
|
|
||||||
db_get_ccm_settings ;# db_stop
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
|
|
||||||
### do the usual post-installion configuration
|
|
||||||
|
|
||||||
if [ ! -d "/etc/ccm" ]; then
|
|
||||||
db_message "ccm/shared/error_etc_ccm_missing_dir"
|
|
||||||
mkdir -p "/etc/ccm"
|
|
||||||
fi
|
|
||||||
|
|
||||||
ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_file_attributes $ccm_package_name $ccm_package_version
|
|
||||||
|
|
||||||
|
|
||||||
### try to set up the database if asked to do so
|
|
||||||
|
|
||||||
if [ "$pg_set_up_database_p" = "true" ]; then
|
|
||||||
pg_set_up_database
|
|
||||||
fi
|
|
||||||
|
|
||||||
### try to load the application if asked to do so
|
|
||||||
|
|
||||||
if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then
|
|
||||||
ccm_load
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
### run the hostinit step
|
|
||||||
|
|
||||||
if [ -n "$JAVA_HOME" ]; then
|
|
||||||
tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true
|
|
||||||
tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true
|
|
||||||
ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
### don't give others the registry details [eg the database password] on a golden plate
|
|
||||||
# FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership.
|
|
||||||
# chmod -R o-rwx /etc/ccm/conf/registry || true
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
abort-upgrade|abort-remove|abort-deconfigure)
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postinst called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# postrm script for ccm-auth-http
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
db_get_ccm_settings
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
if [ "$ccm_package_name" != "ccm-core" ]; then
|
|
||||||
exit 0 ;# nothing to do
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
purge-FIXME)
|
|
||||||
# FIXME: there are problems with this, so disabling for the moment.
|
|
||||||
|
|
||||||
# maybe drop the database
|
|
||||||
if [ "$dbase_host" = "localhost" ]; then
|
|
||||||
|
|
||||||
db_input high ccm/shared/pg_drop_database_at_purge_p || true
|
|
||||||
db_go
|
|
||||||
db_stop
|
|
||||||
|
|
||||||
if [ "$pg_drop_database_at_purge_p" = "true" ]; then
|
|
||||||
su - postgres -c "dropdb $dbase_name" 1>&2 || true
|
|
||||||
su - postgres -c "dropuser $dbase_user" 1>&2 || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# FIXME: should we still remove /etc/ccm/conf/registry/registry.properties,
|
|
||||||
# even if we don't or fail to drop the database.
|
|
||||||
rm -rf /etc/ccm/conf/registry/*
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
# Nothing to do here.
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# prerm script for ccm-auth-http
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <prerm> `remove'
|
|
||||||
# * <old-prerm> `upgrade' <new-version>
|
|
||||||
# * <new-prerm> `failed-upgrade' <old-version>
|
|
||||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
|
||||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
|
||||||
# <package-being-installed> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
db_get_ccm_settings ; db_stop
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|purge|upgrade|deconfigure)
|
|
||||||
|
|
||||||
ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version
|
|
||||||
;;
|
|
||||||
|
|
||||||
failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "prerm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then
|
|
||||||
invoke-rc.d ccm stop || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
||||||
#!/usr/bin/make -f
|
|
||||||
# debian/rules that uses debhelper.
|
|
||||||
# This file is public domain software, originally written by Joey Hess.
|
|
||||||
#
|
|
||||||
# This version is for packages that are architecture independent.
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
|
||||||
#export DH_VERBOSE=1
|
|
||||||
|
|
||||||
build.xml:
|
|
||||||
dh_testdir
|
|
||||||
# Add here commands to configure the package.
|
|
||||||
@sh debian/ccm-config.sh
|
|
||||||
|
|
||||||
build: build-stamp
|
|
||||||
build-stamp: build.xml
|
|
||||||
dh_testdir
|
|
||||||
|
|
||||||
# Add here commands to compile the package.
|
|
||||||
@sh debian/ccm-build.sh
|
|
||||||
|
|
||||||
touch build-stamp
|
|
||||||
|
|
||||||
clean:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
rm -f build-stamp
|
|
||||||
|
|
||||||
# Add here commands to clean up after the build process.
|
|
||||||
@sh debian/ccm-clean.sh
|
|
||||||
|
|
||||||
dh_clean
|
|
||||||
|
|
||||||
install: build
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_clean -k
|
|
||||||
dh_installdirs
|
|
||||||
|
|
||||||
# Add here commands to install the package into debian/<packagename>.
|
|
||||||
@sh debian/ccm-install.sh $(CURDIR)/debian/tmp
|
|
||||||
|
|
||||||
# Build architecture-independent files here.
|
|
||||||
binary-indep: build install
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_installdirs
|
|
||||||
dh_installchangelogs
|
|
||||||
dh_installdocs
|
|
||||||
dh_installexamples
|
|
||||||
@sh debian/ccm-disperse.sh debian/tmp
|
|
||||||
# dh_install --sourcedir=debian/tmp
|
|
||||||
# dh_installmenu
|
|
||||||
dh_installdebconf
|
|
||||||
# dh_installlogrotate
|
|
||||||
# dh_installemacsen
|
|
||||||
# dh_installcatalogs
|
|
||||||
# dh_installpam
|
|
||||||
# dh_installmime
|
|
||||||
# dh_installinit
|
|
||||||
# dh_installcron
|
|
||||||
# dh_installinfo
|
|
||||||
# dh_undocumented
|
|
||||||
dh_installman
|
|
||||||
dh_link
|
|
||||||
dh_compress
|
|
||||||
dh_fixperms
|
|
||||||
# dh_perl
|
|
||||||
# dh_python
|
|
||||||
dh_installdeb
|
|
||||||
dh_gencontrol
|
|
||||||
dh_md5sums
|
|
||||||
dh_builddeb
|
|
||||||
|
|
||||||
# Build architecture-dependent files here.
|
|
||||||
binary-arch: build install
|
|
||||||
# We have nothing to do by default.
|
|
||||||
|
|
||||||
binary: binary-indep binary-arch
|
|
||||||
.PHONY: build clean binary-indep binary-arch binary install
|
|
||||||
|
|
@ -1,207 +0,0 @@
|
||||||
Template: ccm/debconf/version
|
|
||||||
Type: string
|
|
||||||
Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
Description: The version of the debconf template
|
|
||||||
Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
.
|
|
||||||
$Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $
|
|
||||||
|
|
||||||
Template: ccm/package_name
|
|
||||||
Type: string
|
|
||||||
Default: ccm-auth-http
|
|
||||||
Description: The name of the package
|
|
||||||
This is syntetic sugar.
|
|
||||||
|
|
||||||
Template: ccm/package_version
|
|
||||||
Type: string
|
|
||||||
Default: 6.3.0
|
|
||||||
Description: The version of the package
|
|
||||||
This is synthetic sugar.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_type
|
|
||||||
Type: select
|
|
||||||
Choices: postgresql
|
|
||||||
Default: postgresql
|
|
||||||
Description: Database backend:
|
|
||||||
Please choose a database backend. At the moment, you could only select PostgreSQL.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_host
|
|
||||||
Type: string
|
|
||||||
Default: localhost
|
|
||||||
Description: Database host:
|
|
||||||
Please specify the host that the database runs on.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_name
|
|
||||||
Type: string
|
|
||||||
Default: ccm01.db
|
|
||||||
Description: Database name:
|
|
||||||
Please specify the name of the APLAWS database.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_user
|
|
||||||
Type: string
|
|
||||||
Default: ccm
|
|
||||||
Description: Database user name:
|
|
||||||
Please specify the database account for the APLAWS database.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_password
|
|
||||||
Type: password
|
|
||||||
Default: ccmpwd
|
|
||||||
Description: Database password:
|
|
||||||
Please choose a password for the APLAWS database account.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_runtime_jdbc_url
|
|
||||||
Type: string
|
|
||||||
Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd
|
|
||||||
Description: JDBC connection URL:
|
|
||||||
The WAF runtime uses this value to connect to a database.
|
|
||||||
.
|
|
||||||
Format: jdbc:[subprotocol]:[subname]
|
|
||||||
.
|
|
||||||
Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_web_server
|
|
||||||
Type: string
|
|
||||||
Default: localhost:9090
|
|
||||||
Description: Server virtual host:
|
|
||||||
Please specify the hostname and port that users of a site will
|
|
||||||
see in URLs generated by WAF.
|
|
||||||
.
|
|
||||||
Format: [server hostname]:[port number]
|
|
||||||
.
|
|
||||||
Example: example.com:80
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_email
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Email Address:
|
|
||||||
Please specify the system administrator account.
|
|
||||||
.
|
|
||||||
Format: <user>@<domain>
|
|
||||||
.
|
|
||||||
Example: joe@example.com
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_name_given
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator First Name:
|
|
||||||
Please specify the name of the system administrator.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_name_family
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Last Name:
|
|
||||||
Please specify the surname of the system administrator.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password
|
|
||||||
Type: password
|
|
||||||
Default:
|
|
||||||
Description: Administrator Password
|
|
||||||
Please choose a password for the system administrator account.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password_question
|
|
||||||
Type: string
|
|
||||||
Default: The name of your primary school
|
|
||||||
Description: Administrator Password Question:
|
|
||||||
This question will be asked when the password to the system administrator
|
|
||||||
account is lost and access must be recovered.
|
|
||||||
.
|
|
||||||
Please only use letters and numbers.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password_answer
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Password Answer:
|
|
||||||
Now specify the correct answer to the Administrator Password Question.
|
|
||||||
.
|
|
||||||
Please only use letters and numbers.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_load_apps_at_install_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Load CCM applications as they install?
|
|
||||||
You could choose to load CCM applications into the database
|
|
||||||
automatically after they are installed, or you could load them
|
|
||||||
manually [with 'ccm load'] yourself.
|
|
||||||
.
|
|
||||||
The former will save you some manual work, while the latter is probably
|
|
||||||
most suited if you are trying to build the applications from the
|
|
||||||
sources and prefer to load them once all are built and installed.
|
|
||||||
|
|
||||||
Template: ccm/shared/pg_set_up_database_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Do you want me to set up the CCM database and adjust the access permissions?
|
|
||||||
You have specified a database on your localhost. I could set it up
|
|
||||||
for you and automatically adjust the access permissions. I could do
|
|
||||||
this independently of whether or not you have choosen to load the
|
|
||||||
applications at install time.
|
|
||||||
.
|
|
||||||
Say no here if you have already prepared the CCM database yourself
|
|
||||||
or if you would like to do it later. Saying yes will save you some
|
|
||||||
manual work.
|
|
||||||
|
|
||||||
Template: ccm/shared/pg_drop_database_at_purge_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Do you want me to drop the CCM database?
|
|
||||||
|
|
||||||
|
|
||||||
Template: ccm/shared/error_etc_ccm_missing_dir
|
|
||||||
Type: note
|
|
||||||
Description: CCM configuration directory does not exist.
|
|
||||||
I couldn't find the CCM configuration directory: /etc/ccm.
|
|
||||||
.
|
|
||||||
This probably points at a corrupt or unusual CCM installation. The ccm-tools
|
|
||||||
package creates this directory --- please verify that it is installed and
|
|
||||||
intact.
|
|
||||||
.
|
|
||||||
I will continue with the configuration by re-creating the directory,
|
|
||||||
but we may experience problems later.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_aux_setupdb_failed
|
|
||||||
Type: note
|
|
||||||
Description: ccm-aux-setupdb couldn't complete.
|
|
||||||
The helper script ccm-aux-setupdb didn't succeed.
|
|
||||||
This means that the CCM database couldn't be set up.
|
|
||||||
.
|
|
||||||
If you have answered yes to the automatic loading of
|
|
||||||
applications at install time, I will still try to honour
|
|
||||||
that.
|
|
||||||
.
|
|
||||||
In case that doesn't succeed [likely now], please manually
|
|
||||||
prepare the database and load the application(s) after the
|
|
||||||
installation.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_aux_update_hba_conf_failed
|
|
||||||
Type: note
|
|
||||||
Description: ccm-aux-update-hba-conf couldn't complete.
|
|
||||||
The helper script ccm-aux-update-hba-conf didn't succeed.
|
|
||||||
This means that the access permissions for the ccm database
|
|
||||||
couldn't be set up.
|
|
||||||
.
|
|
||||||
If you have answered yes to the automatic loading of
|
|
||||||
applications at install time, I will still try to honour
|
|
||||||
that.
|
|
||||||
.
|
|
||||||
In case that doesn't succeed [likely now], please manually
|
|
||||||
check/edit the pg_hba.conf file of your PostgreSQL instance
|
|
||||||
and load the application(s) after the installation.
|
|
||||||
|
|
||||||
Template: ccm/shared/error_ccm_tool_not_found
|
|
||||||
Type: note
|
|
||||||
Description: The 'ccm' tool not found.
|
|
||||||
I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it.
|
|
||||||
.
|
|
||||||
This probably points at a corrupt or unusual CCM installation. The ccm-tools
|
|
||||||
package contains this file --- please check your setup after the installation,
|
|
||||||
and then run "dpkg-reconfigure ccm-auth-http".
|
|
||||||
|
|
||||||
Template: ccm/shared/error_java_home_not_found
|
|
||||||
Type: note
|
|
||||||
Description: JAVA_HOME not found.
|
|
||||||
JAVA_HOME isn't set --- I have even tried to guess it but failed.
|
|
||||||
.
|
|
||||||
This will cancel any 'ccm load' and 'ccm hostinit' operations.
|
|
||||||
.
|
|
||||||
Please check your java setup after the installation, and then run
|
|
||||||
"dpkg-reconfigure ccm-auth-http".
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/index.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/packages.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/package-list
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/index-all.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif
|
|
||||||
var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
Package: ccm-bookmarks-doc
|
|
||||||
Version: 6.3.0-4
|
|
||||||
Section: contrib/web
|
|
||||||
Priority: optional
|
|
||||||
Architecture: all
|
|
||||||
Depends: ccm-tools
|
|
||||||
Installed-Size: 800
|
|
||||||
Maintainer: Runtime Packaging <runtime-packaging@runtime-collective.com>
|
|
||||||
Source: ccm-bookmarks
|
|
||||||
Description: Documentation for ccm-bookmarks
|
|
||||||
Documentation for ccm-bookmarks. Provides the JavaDoc API documentation.
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-bookmarks-doc/copyright
|
|
||||||
42d1154453e3846025aeadd00c2954fd usr/share/doc/ccm-bookmarks-doc/changelog.Debian.gz
|
|
||||||
6857df2f948afecb5c9f2de918b3c20e var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html
|
|
||||||
fd97096d280b4f2bdffde9b31e6a105a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html
|
|
||||||
8f47aada9a4a58f205b51b809660e882 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html
|
|
||||||
db474c3a0431becc6bb7ef13611d8604 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html
|
|
||||||
bd3117ec312598c409a555f69c87af38 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html
|
|
||||||
7b76ac01bf241fcc2c306b821c78b2fd var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html
|
|
||||||
318a2f85dc4e07c2ec94215b4b944951 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html
|
|
||||||
98147fccab504c2abed1f403da1a1b8a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html
|
|
||||||
df3486d9ec62f2c1eb9a6e038a746b28 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html
|
|
||||||
0f26bc5c93f045ead11ecf013b2da0ac var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html
|
|
||||||
ff102cdfce7ec4e342c67a0125012d83 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html
|
|
||||||
de968b2c06f16d4a6fc01e73fac6c4ca var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html
|
|
||||||
b5c8f1fe1fdefb08f41be6ec2b76fdad var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html
|
|
||||||
1f26d262e05179e9266f0f1c055e15d5 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html
|
|
||||||
ddf1b710d8ea9ae70c67485ff3d59bcc var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html
|
|
||||||
79d0c2264d9b2bfb386b0a40bfccff37 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html
|
|
||||||
0ad9b28612e8b8ed259f9dc24c7965c9 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html
|
|
||||||
1e58febd47a561a11a18cc320f1d63de var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html
|
|
||||||
36ae1e3e058789a2d9961d51bbf5f523 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html
|
|
||||||
4bd2127df1a7e9191572acae9a4f7855 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html
|
|
||||||
2d2a712e1eb9493f378db8ff2d3c7391 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html
|
|
||||||
53e44500df8a4f3012a5fc75526770a9 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html
|
|
||||||
fb920e5e10a639ba919eeb0b3b7343bc var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html
|
|
||||||
f41446ab0ec54a1ce4be17b867f3bb8b var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html
|
|
||||||
9dddc0808ea179434cb9141f585bfec4 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html
|
|
||||||
7dadc773e35da6144935d2a2aff0cd17 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html
|
|
||||||
68cf5e124a9ebfbac3899830ca11b98f var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html
|
|
||||||
ee96139d6efb7c8abe34d88fecd55d73 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html
|
|
||||||
53a2ddaec9793e20cb4decee8e20a8ae var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html
|
|
||||||
daad5cd72d6d7646ac754e5b0dcffc30 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html
|
|
||||||
2605e0ee42fb46ff1d00609803cda906 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html
|
|
||||||
3d1d1e977c21631ea9ca78d60301ca95 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html
|
|
||||||
d073f79fd041e1d43289c021d7bf7be1 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html
|
|
||||||
0eee3964e0e2fd8cd868140ae45941b0 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html
|
|
||||||
b1b49763b245f121f3e0460a013442a8 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html
|
|
||||||
be3621303c9ed2188af12197a0d9e43c var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html
|
|
||||||
5e47b5f8be21c6f551463aa7a88d7e71 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html
|
|
||||||
fc30ccb963f006dcc4bc3bc4199b8edb var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html
|
|
||||||
81edbedb8ed254bc63aa69039fd70b2d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html
|
|
||||||
fc3f5cc47407f5d773bcb29a3704377a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html
|
|
||||||
adc8431164935364c407a45ba80a959d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html
|
|
||||||
b7037677e68aef6ac5948809fd8ffc57 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html
|
|
||||||
96ec265ff9c891f2d840e2748c2e3171 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html
|
|
||||||
130b3fdf983e6e607eb59bbe6558764d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html
|
|
||||||
a85920f7f061a0f11fa5b4870348e195 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html
|
|
||||||
e3e543511de03f2300c33cadddd1f713 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html
|
|
||||||
153761ce7838dee2691e151ba8009589 var/www/html/ccm-bookmarks-6.3.0/api/index.html
|
|
||||||
856baa6014037d3131ad0e733f926bed var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html
|
|
||||||
a2872849332aaabfe8bdeb5d5ac14236 var/www/html/ccm-bookmarks-6.3.0/api/packages.html
|
|
||||||
8cc88314fce0cc52e57f9ccb2cb8436e var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css
|
|
||||||
94d4af7a5db365077f921ac3d36c55aa var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html
|
|
||||||
a5d382e2c793f463d48bc4547e69fa40 var/www/html/ccm-bookmarks-6.3.0/api/package-list
|
|
||||||
2a917f1fc8be4618a841bac3fcb6ee57 var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html
|
|
||||||
e02550c46ba9c8263ae9c69c406706b0 var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html
|
|
||||||
a5d069a5f0b99b845def8b2ffc6462ca var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html
|
|
||||||
c974cce25a33a8fcc97b95966685fa66 var/www/html/ccm-bookmarks-6.3.0/api/index-all.html
|
|
||||||
42ca47cca7242eaa9b06421e0c6196c8 var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html
|
|
||||||
a4b1c6bbd45f34fab20c76a6453f7907 var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html
|
|
||||||
220f4eda0bd49915699315f18b8b03cf var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif
|
|
||||||
66c650a493d06519a624c83ef7fa803e var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html
|
|
||||||
Binary file not shown.
|
|
@ -1,15 +0,0 @@
|
||||||
This package was debianized by Berkan Eskikaya <berkan@runtime-collective.com> on
|
|
||||||
Tue, 13 Apr 2004 19:03:14 +0100.
|
|
||||||
|
|
||||||
It was downloaded from http://aplaws.sourceforge.net/
|
|
||||||
|
|
||||||
Upstream Authors: Redhat UK.
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
|
|
||||||
You are free to distribute this software under the terms of
|
|
||||||
the GNU General Public License.
|
|
||||||
On Debian systems, the complete text of the GNU General Public
|
|
||||||
License can be found in the file `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
All Classes (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
<B>All Classes</B></FONT>
|
|
||||||
<BR>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks" target="classFrame">ApplicationAuthenticationListener</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks" target="classFrame">Bookmark</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkApplication</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkBasePage</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkCollection</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkDispatcher</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkEditPane</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkPortlet</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util" target="classFrame">GlobalizationUtil</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer" target="classFrame">Initializer</A>
|
|
||||||
<BR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
All Classes (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
<B>All Classes</B></FONT>
|
|
||||||
<BR>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks">BookmarkDispatcher</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer">Initializer</A>
|
|
||||||
<BR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,384 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
ApplicationAuthenticationListener (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ApplicationAuthenticationListener class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="ApplicationAuthenticationListener (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ApplicationAuthenticationListener.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="ApplicationAuthenticationListener.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks</FONT>
|
|
||||||
<BR>
|
|
||||||
Class ApplicationAuthenticationListener</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.ui.login.UserAuthenticationListener
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ApplicationAuthenticationListener</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.RequestListener</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>ApplicationAuthenticationListener</B><DT>extends com.arsdigita.ui.login.UserAuthenticationListener<DT>implements com.arsdigita.bebop.event.RequestListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
A RequestListener that verifies the user
|
|
||||||
has a given privilege on the current Application.
|
|
||||||
|
|
||||||
The user is redirected to ACCESS_DENIED if their is
|
|
||||||
insufficient permission.
|
|
||||||
|
|
||||||
XXX Permissions will be incorporated in December. This is
|
|
||||||
temporary for use in our engineering production server until.
|
|
||||||
that time.
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#versionId">versionId</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#ApplicationAuthenticationListener(java.lang.String)">ApplicationAuthenticationListener</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> privilegeName)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#denyRequest(com.arsdigita.bebop.PageState)">denyRequest</A></B>(com.arsdigita.bebop.PageState state)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Action performed if authentication failed.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#getRequiredPrivilege()">getRequiredPrivilege</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#pageRequested(com.arsdigita.bebop.event.RequestEvent)">pageRequested</A></B>(com.arsdigita.bebop.event.RequestEvent event)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Checks whether the user is logged in.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#setRequiredPrivilege(java.lang.String)">setRequiredPrivilege</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> privilegeName)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.ui.login.UserAuthenticationListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.ui.login.UserAuthenticationListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getUser, isLoggedIn</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="versionId"><!-- --></A><H3>
|
|
||||||
versionId</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>versionId</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#com.arsdigita.bookmarks.ApplicationAuthenticationListener.versionId">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="ApplicationAuthenticationListener(java.lang.String)"><!-- --></A><H3>
|
|
||||||
ApplicationAuthenticationListener</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>ApplicationAuthenticationListener</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> privilegeName)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="setRequiredPrivilege(java.lang.String)"><!-- --></A><H3>
|
|
||||||
setRequiredPrivilege</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setRequiredPrivilege</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> privilegeName)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getRequiredPrivilege()"><!-- --></A><H3>
|
|
||||||
getRequiredPrivilege</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getRequiredPrivilege</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="pageRequested(com.arsdigita.bebop.event.RequestEvent)"><!-- --></A><H3>
|
|
||||||
pageRequested</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>pageRequested</B>(com.arsdigita.bebop.event.RequestEvent event)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Checks whether the user is logged in. If not, redirects the client
|
|
||||||
to the login page.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>pageRequested</CODE> in interface <CODE>com.arsdigita.bebop.event.RequestListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="denyRequest(com.arsdigita.bebop.PageState)"><!-- --></A><H3>
|
|
||||||
denyRequest</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>denyRequest</B>(com.arsdigita.bebop.PageState state)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Action performed if authentication failed. Override this to
|
|
||||||
perform a perform a specific action after the authentication
|
|
||||||
check.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ApplicationAuthenticationListener.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="ApplicationAuthenticationListener.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,827 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Bookmark (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.Bookmark class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Bookmark (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Bookmark.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Bookmark.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks</FONT>
|
|
||||||
<BR>
|
|
||||||
Class Bookmark</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.DomainObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.ObservableDomainObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.kernel.ACSObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.Bookmark</B>
|
|
||||||
</PRE>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>Bookmark</B><DT>extends com.arsdigita.kernel.ACSObject</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
A bookmark.
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD>Jim Parsons</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
The type of the <CODE>DataObject</CODE>
|
|
||||||
that stands behind this <CODE>DomainObject</CODE>.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#Bookmark(com.arsdigita.persistence.DataObject)">Bookmark</A></B>(com.arsdigita.persistence.DataObject dataObject)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#Bookmark(java.lang.String, java.lang.String)">Bookmark</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> URLstring)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#afterSave()">afterSave</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getAuthor()">getAuthor</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the original creator's name for this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getBaseDataObjectType()">getBaseDataObjectType</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getBookmarkApplication()">getBookmarkApplication</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getCreateDate()">getCreateDate</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the Creation Date of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getDescription()">getDescription</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the Description of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getModDate()">getModDate</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the last modification date of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getName()">getName</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the title of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> boolean</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getNewWindow()">getNewWindow</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getNumVisits()">getNumVisits</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the number of times this Bookmark has been visited,
|
|
||||||
and return value as a String.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> int</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getSortKey()">getSortKey</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the sort key of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#getURL()">getURL</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the URL of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#retrieveAllBookmarks()">retrieveAllBookmarks</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(java.math.BigDecimal)">retrieveBookmark</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> bmrkID)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on an ID.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.DataObject)">retrieveBookmark</A></B>(com.arsdigita.persistence.DataObject dataObject)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on a data object.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.OID)">retrieveBookmark</A></B>(com.arsdigita.persistence.OID oid)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on an OID.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setBookmarkApplication(com.arsdigita.bookmarks.BookmarkApplication)">setBookmarkApplication</A></B>(<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> bmrkapp)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setDescription(java.lang.String)">setDescription</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> desc)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Set the description for this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setModDate()">setModDate</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Set the mod date for this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setName(java.lang.String)">setName</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Set the title of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setNewWindow(boolean)">setNewWindow</A></B>(boolean newWindow)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setSortKey(int)">setSortKey</A></B>(int sortKey)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#setURL(java.lang.String)">setURL</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> url)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Set the URL of this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html#visitsPlusPlus()">visitsPlusPlus</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Increment the counter for number of visits to this Bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>assertPrivilege, beforeSave, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getDisplayName, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.ObservableDomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.ObservableDomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addObserver, getObservers</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.DomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.DomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BASE_DATA_OBJECT_TYPE"><!-- --></A><H3>
|
|
||||||
BASE_DATA_OBJECT_TYPE</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BASE_DATA_OBJECT_TYPE</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>The type of the <CODE>DataObject</CODE>
|
|
||||||
that stands behind this <CODE>DomainObject</CODE>.
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#com.arsdigita.bookmarks.Bookmark.BASE_DATA_OBJECT_TYPE">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="Bookmark(com.arsdigita.persistence.DataObject)"><!-- --></A><H3>
|
|
||||||
Bookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>Bookmark</B>(com.arsdigita.persistence.DataObject dataObject)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="Bookmark(java.lang.String, java.lang.String)"><!-- --></A><H3>
|
|
||||||
Bookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>Bookmark</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> URLstring)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="getBaseDataObjectType()"><!-- --></A><H3>
|
|
||||||
getBaseDataObjectType</H3>
|
|
||||||
<PRE>
|
|
||||||
protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getBaseDataObjectType</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="retrieveBookmark(java.math.BigDecimal)"><!-- --></A><H3>
|
|
||||||
retrieveBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> <B>retrieveBookmark</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> bmrkID)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Retrieve an existing Bookmark based on an ID.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="retrieveBookmark(com.arsdigita.persistence.DataObject)"><!-- --></A><H3>
|
|
||||||
retrieveBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> <B>retrieveBookmark</B>(com.arsdigita.persistence.DataObject dataObject)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Retrieve an existing Bookmark based on a data object.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Parameters:</B><DD><CODE>dataObject</CODE> - the data object of the Bookmark to retrieve.
|
|
||||||
<DT><B>Returns:</B><DD>an existing Bookmark. Note that the return value may be
|
|
||||||
null if no Bookmark data object for this ID exists.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="retrieveBookmark(com.arsdigita.persistence.OID)"><!-- --></A><H3>
|
|
||||||
retrieveBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public static <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> <B>retrieveBookmark</B>(com.arsdigita.persistence.OID oid)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Retrieve an existing Bookmark based on an OID.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Parameters:</B><DD><CODE>oid</CODE> - the OID of the Bookmark to retrieve.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getBookmarkApplication()"><!-- --></A><H3>
|
|
||||||
getBookmarkApplication</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> <B>getBookmarkApplication</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setBookmarkApplication(com.arsdigita.bookmarks.BookmarkApplication)"><!-- --></A><H3>
|
|
||||||
setBookmarkApplication</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setBookmarkApplication</B>(<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> bmrkapp)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="retrieveAllBookmarks()"><!-- --></A><H3>
|
|
||||||
retrieveAllBookmarks</H3>
|
|
||||||
<PRE>
|
|
||||||
public static <A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A> <B>retrieveAllBookmarks</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getName()"><!-- --></A><H3>
|
|
||||||
getName</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getName</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the title of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>this Bookmarks title.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getURL()"><!-- --></A><H3>
|
|
||||||
getURL</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getURL</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the URL of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getDescription()"><!-- --></A><H3>
|
|
||||||
getDescription</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getDescription</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the Description of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getCreateDate()"><!-- --></A><H3>
|
|
||||||
getCreateDate</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getCreateDate</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the Creation Date of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getModDate()"><!-- --></A><H3>
|
|
||||||
getModDate</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getModDate</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the last modification date of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getNewWindow()"><!-- --></A><H3>
|
|
||||||
getNewWindow</H3>
|
|
||||||
<PRE>
|
|
||||||
public boolean <B>getNewWindow</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getAuthor()"><!-- --></A><H3>
|
|
||||||
getAuthor</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getAuthor</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the original creator's name for this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>this portal's title.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getNumVisits()"><!-- --></A><H3>
|
|
||||||
getNumVisits</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getNumVisits</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the number of times this Bookmark has been visited,
|
|
||||||
and return value as a String.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setName(java.lang.String)"><!-- --></A><H3>
|
|
||||||
setName</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setName</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Set the title of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setURL(java.lang.String)"><!-- --></A><H3>
|
|
||||||
setURL</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setURL</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> url)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Set the URL of this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setDescription(java.lang.String)"><!-- --></A><H3>
|
|
||||||
setDescription</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setDescription</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> desc)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Set the description for this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setModDate()"><!-- --></A><H3>
|
|
||||||
setModDate</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setModDate</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Set the mod date for this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setNewWindow(boolean)"><!-- --></A><H3>
|
|
||||||
setNewWindow</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setNewWindow</B>(boolean newWindow)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="visitsPlusPlus()"><!-- --></A><H3>
|
|
||||||
visitsPlusPlus</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>visitsPlusPlus</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Increment the counter for number of visits to this Bookmark.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getSortKey()"><!-- --></A><H3>
|
|
||||||
getSortKey</H3>
|
|
||||||
<PRE>
|
|
||||||
public int <B>getSortKey</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the sort key of this Bookmark. The sort key is used
|
|
||||||
to order a set of bookmarks in a particular Workspace.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>the bookmark sort key.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="setSortKey(int)"><!-- --></A><H3>
|
|
||||||
setSortKey</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>setSortKey</B>(int sortKey)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="afterSave()"><!-- --></A><H3>
|
|
||||||
afterSave</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>afterSave</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Bookmark.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Bookmark.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,561 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkApplication (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.BookmarkApplication class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkApplication (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkApplication.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkApplication.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkApplication</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.DomainObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.ObservableDomainObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.kernel.ACSObject
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.kernel.Resource
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.web.Application
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.BookmarkApplication</B>
|
|
||||||
</PRE>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkApplication</B><DT>extends com.arsdigita.web.Application</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
BookmarkApplication class.
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#versionId">versionId</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.web.Application"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.web.Application</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>PRIMARY_URL</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.kernel.Resource"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.kernel.Resource</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(java.math.BigDecimal)">BookmarkApplication</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> key)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(com.arsdigita.persistence.DataObject)">BookmarkApplication</A></B>(com.arsdigita.persistence.DataObject dataObject)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(com.arsdigita.persistence.OID)">BookmarkApplication</A></B>(com.arsdigita.persistence.OID oid)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#create(java.lang.String, java.lang.String, com.arsdigita.web.Application)">create</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> urlName,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> title,
|
|
||||||
com.arsdigita.web.Application parent)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Use this instead of the constructor to create new Bookmark
|
|
||||||
Application objects</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#createBookmark(java.lang.String, java.lang.String)">createBookmark</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> URLString)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#getBaseDataObjectType()">getBaseDataObjectType</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#getBookmarks()">getBookmarks</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#normalizeBookmarkSortKeys()">normalizeBookmarkSortKeys</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#removeBookmark(com.arsdigita.bookmarks.Bookmark)">removeBookmark</A></B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> bmrk)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithNext(com.arsdigita.bookmarks.Bookmark)">swapBookmarkWithNext</A></B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithPrevious(com.arsdigita.bookmarks.Bookmark)">swapBookmarkWithPrevious</A></B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.web.Application"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.web.Application</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>afterDelete, beforeDelete, beforeSave, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.kernel.Resource"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.kernel.Resource</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>afterSave, createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.ObservableDomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.ObservableDomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addObserver, getObservers</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.DomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.DomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="versionId"><!-- --></A><H3>
|
|
||||||
versionId</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>versionId</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#com.arsdigita.bookmarks.BookmarkApplication.versionId">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BASE_DATA_OBJECT_TYPE"><!-- --></A><H3>
|
|
||||||
BASE_DATA_OBJECT_TYPE</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BASE_DATA_OBJECT_TYPE</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#com.arsdigita.bookmarks.BookmarkApplication.BASE_DATA_OBJECT_TYPE">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkApplication(com.arsdigita.persistence.OID)"><!-- --></A><H3>
|
|
||||||
BookmarkApplication</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkApplication</B>(com.arsdigita.persistence.OID oid)
|
|
||||||
throws com.arsdigita.domain.DataObjectNotFoundException</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BookmarkApplication(java.math.BigDecimal)"><!-- --></A><H3>
|
|
||||||
BookmarkApplication</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkApplication</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> key)
|
|
||||||
throws com.arsdigita.domain.DataObjectNotFoundException</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BookmarkApplication(com.arsdigita.persistence.DataObject)"><!-- --></A><H3>
|
|
||||||
BookmarkApplication</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkApplication</B>(com.arsdigita.persistence.DataObject dataObject)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="getBaseDataObjectType()"><!-- --></A><H3>
|
|
||||||
getBaseDataObjectType</H3>
|
|
||||||
<PRE>
|
|
||||||
protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getBaseDataObjectType</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="create(java.lang.String, java.lang.String, com.arsdigita.web.Application)"><!-- --></A><H3>
|
|
||||||
create</H3>
|
|
||||||
<PRE>
|
|
||||||
public static <A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> <B>create</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> urlName,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> title,
|
|
||||||
com.arsdigita.web.Application parent)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Use this instead of the constructor to create new Bookmark
|
|
||||||
Application objects
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="createBookmark(java.lang.String, java.lang.String)"><!-- --></A><H3>
|
|
||||||
createBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> <B>createBookmark</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> URLString)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="removeBookmark(com.arsdigita.bookmarks.Bookmark)"><!-- --></A><H3>
|
|
||||||
removeBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>removeBookmark</B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> bmrk)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getBookmarks()"><!-- --></A><H3>
|
|
||||||
getBookmarks</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A> <B>getBookmarks</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="swapBookmarkWithPrevious(com.arsdigita.bookmarks.Bookmark)"><!-- --></A><H3>
|
|
||||||
swapBookmarkWithPrevious</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>swapBookmarkWithPrevious</B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)
|
|
||||||
throws com.arsdigita.persistence.PersistenceException</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Throws:</B>
|
|
||||||
<DD><CODE>com.arsdigita.persistence.PersistenceException</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="swapBookmarkWithNext(com.arsdigita.bookmarks.Bookmark)"><!-- --></A><H3>
|
|
||||||
swapBookmarkWithNext</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>swapBookmarkWithNext</B>(<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)
|
|
||||||
throws com.arsdigita.persistence.PersistenceException</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Throws:</B>
|
|
||||||
<DD><CODE>com.arsdigita.persistence.PersistenceException</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="normalizeBookmarkSortKeys()"><!-- --></A><H3>
|
|
||||||
normalizeBookmarkSortKeys</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>normalizeBookmarkSortKeys</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkApplication.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkApplication.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,403 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkCollection (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.BookmarkCollection class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkCollection (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkCollection.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkCollection.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.domain.DomainCollection">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkCollection</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.DomainQuery
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.DomainCollection
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.BookmarkCollection</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.persistence.DataQuery</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkCollection</B><DT>extends com.arsdigita.domain.DomainCollection</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.domain.DomainCollection"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.domain.DomainCollection</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_dataCollection, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.domain.DomainQuery"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.domain.DomainQuery</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_dataQuery</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected </CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#BookmarkCollection(com.arsdigita.persistence.DataCollection)">BookmarkCollection</A></B>(com.arsdigita.persistence.DataCollection dataCollection)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getBookmark()">getBookmark</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the current item as a Bookmark domain object.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> com.arsdigita.domain.DomainObject</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getDomainObject()">getDomainObject</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the current item as a domain object.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getID()">getID</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the ID for the Bookmark for the current row.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getName()">getName</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the name for the Bookmark for the current row.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> boolean</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getNewWindow()">getNewWindow</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html#getURL()">getURL</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the url for the bookmark for the current row.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.DomainQuery"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.DomainQuery</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addEqualsFilter, addFilter, addFilter, addInSubqueryFilter, addInSubqueryFilter, addNotEqualsFilter, addNotInSubqueryFilter, addOrder, addOrderWithNull, addPath, alias, clearFilter, clearOrder, close, first, get, getFilterFactory, getOption, getParameter, getPosition, getPropertyValues, getType, hasProperty, isAfterLast, isBeforeFirst, isEmpty, isFirst, isLast, last, next, previous, removeFilter, reset, rewind, setFilter, setOption, setOrder, setParameter, setRange, setRange, setReturnsLowerBound, setReturnsUpperBound, size</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkCollection(com.arsdigita.persistence.DataCollection)"><!-- --></A><H3>
|
|
||||||
BookmarkCollection</H3>
|
|
||||||
<PRE>
|
|
||||||
protected <B>BookmarkCollection</B>(com.arsdigita.persistence.DataCollection dataCollection)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="getID()"><!-- --></A><H3>
|
|
||||||
getID</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> <B>getID</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the ID for the Bookmark for the current row.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>the id of this Bookmark.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getDomainObject()"><!-- --></A><H3>
|
|
||||||
getDomainObject</H3>
|
|
||||||
<PRE>
|
|
||||||
public com.arsdigita.domain.DomainObject <B>getDomainObject</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the current item as a domain object.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>the domain object for the current row.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getBookmark()"><!-- --></A><H3>
|
|
||||||
getBookmark</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> <B>getBookmark</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the current item as a Bookmark domain object.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>a Bookmark domain object.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getName()"><!-- --></A><H3>
|
|
||||||
getName</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getName</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the name for the Bookmark for the current row.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>the name of this bookmark.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getURL()"><!-- --></A><H3>
|
|
||||||
getURL</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getURL</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Get the url for the bookmark for the current row.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Returns:</B><DD>the url of this bookmark.</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getNewWindow()"><!-- --></A><H3>
|
|
||||||
getNewWindow</H3>
|
|
||||||
<PRE>
|
|
||||||
public boolean <B>getNewWindow</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkCollection.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkCollection.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.domain.DomainCollection">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,284 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkDispatcher (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.BookmarkDispatcher class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkDispatcher (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkDispatcher.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkDispatcher.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_classes_inherited_from_class_com.arsdigita.dispatcher.MapDispatcher">NESTED</A> | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkDispatcher</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.dispatcher.MapDispatcher
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.page.BebopMapDispatcher
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.BebopMapDispatcher
|
|
||||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.BookmarkDispatcher</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.dispatcher.Dispatcher</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkDispatcher</B><DT>extends com.arsdigita.bebop.BebopMapDispatcher</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
Bookmark dispatcher for both Bebop-backed and other URLs.
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD>Jim Parsons</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="nested_class_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Nested Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="nested_classes_inherited_from_class_com.arsdigita.dispatcher.MapDispatcher"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.page.BebopMapDispatcher</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkDispatcher.html#BookmarkDispatcher()">BookmarkDispatcher</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.dispatcher.MapDispatcher"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.dispatcher.MapDispatcher</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addPage, dispatch, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkDispatcher()"><!-- --></A><H3>
|
|
||||||
BookmarkDispatcher</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkDispatcher</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkDispatcher.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>PREV CLASS</B></A>
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkDispatcher.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_classes_inherited_from_class_com.arsdigita.dispatcher.MapDispatcher">NESTED</A> | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_com.arsdigita.bebop.page.BebopMapDispatcher">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ApplicationAuthenticationListener (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ApplicationAuthenticationListener (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="ApplicationAuthenticationListener.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ApplicationAuthenticationListener</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ApplicationAuthenticationListener
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="ApplicationAuthenticationListener.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,237 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.Bookmark (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.Bookmark (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Bookmark.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.Bookmark</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Packages that use <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><A HREF="#com.arsdigita.bookmarks"><B>com.arsdigita.bookmarks</B></A></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<A NAME="com.arsdigita.bookmarks"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Uses of <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=2>Methods in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> that return <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkCollection.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html#getBookmark()">getBookmark</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Get the current item as a Bookmark domain object.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#createBookmark(java.lang.String, java.lang.String)">createBookmark</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> URLString)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(java.math.BigDecimal)">retrieveBookmark</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html" title="class or interface in java.math">BigDecimal</A> bmrkID)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on an ID.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.DataObject)">retrieveBookmark</A></B>(com.arsdigita.persistence.DataObject dataObject)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on a data object.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.OID)">retrieveBookmark</A></B>(com.arsdigita.persistence.OID oid)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Retrieve an existing Bookmark based on an OID.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=2>Methods in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> with parameters of type <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#removeBookmark(com.arsdigita.bookmarks.Bookmark)">removeBookmark</A></B>(<A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> bmrk)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithPrevious(com.arsdigita.bookmarks.Bookmark)">swapBookmarkWithPrevious</A></B>(<A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithNext(com.arsdigita.bookmarks.Bookmark)">swapBookmarkWithNext</A></B>(<A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A> b)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Bookmark.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,199 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.BookmarkApplication (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.BookmarkApplication (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkApplication.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.BookmarkApplication</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Packages that use <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><A HREF="#com.arsdigita.bookmarks"><B>com.arsdigita.bookmarks</B></A></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<A NAME="com.arsdigita.bookmarks"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Uses of <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=2>Methods in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> that return <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#create(java.lang.String, java.lang.String, com.arsdigita.web.Application)">create</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> urlName,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> title,
|
|
||||||
com.arsdigita.web.Application parent)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Use this instead of the constructor to create new Bookmark
|
|
||||||
Application objects</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#getBookmarkApplication()">getBookmarkApplication</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=2>Methods in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> with parameters of type <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#setBookmarkApplication(com.arsdigita.bookmarks.BookmarkApplication)">setBookmarkApplication</A></B>(<A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A> bmrkapp)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkApplication.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,180 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.BookmarkCollection (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.BookmarkCollection (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkCollection.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.BookmarkCollection</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Packages that use <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><A HREF="#com.arsdigita.bookmarks"><B>com.arsdigita.bookmarks</B></A></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<A NAME="com.arsdigita.bookmarks"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Uses of <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A> in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=2>Methods in <A HREF="../../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> that return <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>BookmarkApplication.</B><B><A HREF="../../../../com/arsdigita/bookmarks/BookmarkApplication.html#getBookmarks()">getBookmarks</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B>Bookmark.</B><B><A HREF="../../../../com/arsdigita/bookmarks/Bookmark.html#retrieveAllBookmarks()">retrieveAllBookmarks</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkCollection.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.BookmarkDispatcher (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.BookmarkDispatcher (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkDispatcher.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.BookmarkDispatcher</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.BookmarkDispatcher
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkDispatcher.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,289 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Initializer (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.installer.Initializer class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Initializer (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Initializer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Initializer.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.runtime.CompoundInitializer">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.installer</FONT>
|
|
||||||
<BR>
|
|
||||||
Class Initializer</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.runtime.CompoundInitializer
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.installer.Initializer</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.runtime.Initializer</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>Initializer</B><DT>extends com.arsdigita.runtime.CompoundInitializer</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<p><strong>Experimental</strong></p>
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD><a href="mailto:jparsons@redhat.com">Jim Parsons</a></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.runtime.CompoundInitializer"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.runtime.CompoundInitializer</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/installer/Initializer.html#Initializer()">Initializer</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/installer/Initializer.html#init(com.arsdigita.runtime.DomainInitEvent)">init</A></B>(com.arsdigita.runtime.DomainInitEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.runtime.CompoundInitializer"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.runtime.CompoundInitializer</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, init, init</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="Initializer()"><!-- --></A><H3>
|
|
||||||
Initializer</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>Initializer</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="init(com.arsdigita.runtime.DomainInitEvent)"><!-- --></A><H3>
|
|
||||||
init</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>init</B>(com.arsdigita.runtime.DomainInitEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Initializer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Initializer.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.runtime.CompoundInitializer">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.installer.Initializer (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.installer.Initializer (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Initializer.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.installer.Initializer</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.installer.Initializer
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="Initializer.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.installer (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.installer package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameTitleFont">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/installer/package-summary.html" target="classFrame">com.arsdigita.bookmarks.installer</A></FONT>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
Classes</FONT>
|
|
||||||
<FONT CLASS="FrameItemFont">
|
|
||||||
<BR>
|
|
||||||
<A HREF="Initializer.html" title="class in com.arsdigita.bookmarks.installer" target="classFrame">Initializer</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,148 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.installer (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.installer package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.installer (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Package com.arsdigita.bookmarks.installer
|
|
||||||
</H2>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../../com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer">Initializer</A></B></TD>
|
|
||||||
<TD><strong>Experimental</strong></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,148 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.installer Class Hierarchy (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.installer Class Hierarchy (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/package-tree.html"><B>PREV</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
Hierarchy For Package com.arsdigita.bookmarks.installer
|
|
||||||
</H2>
|
|
||||||
</CENTER>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../overview-tree.html">All Packages</A></DL>
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Class Hierarchy
|
|
||||||
</H2>
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang"><B>Object</B></A><UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.installer.<A HREF="../../../../com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer"><B>Initializer</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/package-tree.html"><B>PREV</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Package com.arsdigita.bookmarks.installer (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Package com.arsdigita.bookmarks.installer (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Package<br>com.arsdigita.bookmarks.installer</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.installer
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameTitleFont">
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/package-summary.html" target="classFrame">com.arsdigita.bookmarks</A></FONT>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
Classes</FONT>
|
|
||||||
<FONT CLASS="FrameItemFont">
|
|
||||||
<BR>
|
|
||||||
<A HREF="ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks" target="classFrame">ApplicationAuthenticationListener</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="Bookmark.html" title="class in com.arsdigita.bookmarks" target="classFrame">Bookmark</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkApplication.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkApplication</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkCollection.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkCollection</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks" target="classFrame">BookmarkDispatcher</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,165 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV PACKAGE
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/installer/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Package com.arsdigita.bookmarks
|
|
||||||
</H2>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A></B></TD>
|
|
||||||
<TD>A RequestListener that verifies the user
|
|
||||||
has a given privilege on the current Application.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></B></TD>
|
|
||||||
<TD>A bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></B></TD>
|
|
||||||
<TD>BookmarkApplication class.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks">BookmarkDispatcher</A></B></TD>
|
|
||||||
<TD>Bookmark dispatcher for both Bebop-backed and other URLs.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV PACKAGE
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/installer/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,171 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks Class Hierarchy (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks Class Hierarchy (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/installer/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
Hierarchy For Package com.arsdigita.bookmarks
|
|
||||||
</H2>
|
|
||||||
</CENTER>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../overview-tree.html">All Packages</A></DL>
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Class Hierarchy
|
|
||||||
</H2>
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang"><B>Object</B></A><UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.ObservableDomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.kernel.ACSObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="../../../com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>Bookmark</B></A><LI TYPE="circle">class com.arsdigita.kernel.Resource<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.web.Application<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="../../../com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>BookmarkApplication</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainCollection<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="../../../com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>BookmarkCollection</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.page.BebopMapDispatcher<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.BebopMapDispatcher<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="../../../com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><B>BookmarkDispatcher</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.ui.login.UserAuthenticationListener (implements com.arsdigita.bebop.event.RequestListener)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="../../../com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><B>ApplicationAuthenticationListener</B></A> (implements com.arsdigita.bebop.event.RequestListener)
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
<A HREF="../../../com/arsdigita/bookmarks/installer/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,174 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Package com.arsdigita.bookmarks (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Package com.arsdigita.bookmarks (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Package<br>com.arsdigita.bookmarks</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Packages that use <A HREF="../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><A HREF="#com.arsdigita.bookmarks"><B>com.arsdigita.bookmarks</B></A></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<A NAME="com.arsdigita.bookmarks"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
Classes in <A HREF="../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A> used by <A HREF="../../../com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><B><A HREF="../../../com/arsdigita/bookmarks/class-use/Bookmark.html#com.arsdigita.bookmarks"><B>Bookmark</B></A></B>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
A bookmark.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><B><A HREF="../../../com/arsdigita/bookmarks/class-use/BookmarkApplication.html#com.arsdigita.bookmarks"><B>BookmarkApplication</B></A></B>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
BookmarkApplication class.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><B><A HREF="../../../com/arsdigita/bookmarks/class-use/BookmarkCollection.html#com.arsdigita.bookmarks"><B>BookmarkCollection</B></A></B>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,277 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLabelPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkBasePage.CurrentApplicationLabelPrinter</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.PrintListener</DD>
|
|
||||||
</DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Enclosing class:</B><DD><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>protected class <B>BookmarkBasePage.CurrentApplicationLabelPrinter</B><DT>extends <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A><DT>implements com.arsdigita.bebop.event.PrintListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.event.PrintListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.event.PrintListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html#BookmarkBasePage.CurrentApplicationLabelPrinter()">BookmarkBasePage.CurrentApplicationLabelPrinter</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)">prepare</A></B>(com.arsdigita.bebop.event.PrintEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkBasePage.CurrentApplicationLabelPrinter()"><!-- --></A><H3>
|
|
||||||
BookmarkBasePage.CurrentApplicationLabelPrinter</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkBasePage.CurrentApplicationLabelPrinter</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="prepare(com.arsdigita.bebop.event.PrintEvent)"><!-- --></A><H3>
|
|
||||||
prepare</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>prepare</B>(com.arsdigita.bebop.event.PrintEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>prepare</CODE> in interface <CODE>com.arsdigita.bebop.event.PrintListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLabelPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,277 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkBasePage.CurrentApplicationLinkPrinter</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.PrintListener</DD>
|
|
||||||
</DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Enclosing class:</B><DD><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>protected class <B>BookmarkBasePage.CurrentApplicationLinkPrinter</B><DT>extends <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A><DT>implements com.arsdigita.bebop.event.PrintListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.event.PrintListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.event.PrintListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html#BookmarkBasePage.CurrentApplicationLinkPrinter()">BookmarkBasePage.CurrentApplicationLinkPrinter</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)">prepare</A></B>(com.arsdigita.bebop.event.PrintEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkBasePage.CurrentApplicationLinkPrinter()"><!-- --></A><H3>
|
|
||||||
BookmarkBasePage.CurrentApplicationLinkPrinter</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkBasePage.CurrentApplicationLinkPrinter</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="prepare(com.arsdigita.bebop.event.PrintEvent)"><!-- --></A><H3>
|
|
||||||
prepare</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>prepare</B>(com.arsdigita.bebop.event.PrintEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>prepare</CODE> in interface <CODE>com.arsdigita.bebop.event.PrintListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,277 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.ParentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkBasePage.ParentApplicationLinkPrinter</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.PrintListener</DD>
|
|
||||||
</DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Enclosing class:</B><DD><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>protected class <B>BookmarkBasePage.ParentApplicationLinkPrinter</B><DT>extends <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A><DT>implements com.arsdigita.bebop.event.PrintListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.event.PrintListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.event.PrintListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html#BookmarkBasePage.ParentApplicationLinkPrinter()">BookmarkBasePage.ParentApplicationLinkPrinter</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)">prepare</A></B>(com.arsdigita.bebop.event.PrintEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkBasePage.ParentApplicationLinkPrinter()"><!-- --></A><H3>
|
|
||||||
BookmarkBasePage.ParentApplicationLinkPrinter</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkBasePage.ParentApplicationLinkPrinter</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="prepare(com.arsdigita.bebop.event.PrintEvent)"><!-- --></A><H3>
|
|
||||||
prepare</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>prepare</B>(com.arsdigita.bebop.event.PrintEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>prepare</CODE> in interface <CODE>com.arsdigita.bebop.event.PrintListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.ParentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,797 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkBasePage (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkBasePage class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkBasePage (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkBasePage</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Completable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SimpleComponent
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.TextStylable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.BlockStylable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Page
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkBasePage</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkBasePage</B><DT>extends com.arsdigita.bebop.Page</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<p>BasePage class</p>
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD><a href="mailto:jparsons@arsdigita.com">Jim Parsons</a></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="nested_class_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Nested Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected class</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLabelPrinter</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected class</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLinkPrinter</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected class</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.ParentApplicationLinkPrinter</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_BODY_ELEMENT">BMRK_BODY_ELEMENT</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_FOOTER_ELEMENT">BMRK_FOOTER_ELEMENT</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_GLOBAL_ELEMENT">BMRK_GLOBAL_ELEMENT</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_HEADER_ELEMENT">BMRK_HEADER_ELEMENT</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_XML_NS">BMRK_XML_NS</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Page"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.Page</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_invisible, m_panel, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.BlockStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.BlockStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_attr</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BookmarkBasePage()">BookmarkBasePage</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BookmarkBasePage(java.lang.String)">BookmarkBasePage</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> view)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#add(com.arsdigita.bebop.Component)">add</A></B>(com.arsdigita.bebop.Component pc)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Adds a component to the body.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildBody(com.arsdigita.bebop.Container)">buildBody</A></B>(com.arsdigita.bebop.Container body)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildContextBar()">buildContextBar</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildFooter(com.arsdigita.bebop.Container)">buildFooter</A></B>(com.arsdigita.bebop.Container footer)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildGlobal(com.arsdigita.bebop.Container)">buildGlobal</A></B>(com.arsdigita.bebop.Container global)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildHeader(com.arsdigita.bebop.Container)">buildHeader</A></B>(com.arsdigita.bebop.Container header)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildPage()">buildPage</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildTitle()">buildTitle</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> com.arsdigita.bebop.Container</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getBody()">getBody</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> com.arsdigita.bebop.Container</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getFooter()">getFooter</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> com.arsdigita.bebop.Container</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getGlobal()">getGlobal</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> com.arsdigita.bebop.Container</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getHeader()">getHeader</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#goModal(com.arsdigita.bebop.PageState, com.arsdigita.bebop.Component)">goModal</A></B>(com.arsdigita.bebop.PageState ps,
|
|
||||||
com.arsdigita.bebop.Component c)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Makes the given component the only visible component between
|
|
||||||
the header and footer of this page.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#goUnmodal(com.arsdigita.bebop.PageState)">goUnmodal</A></B>(com.arsdigita.bebop.PageState ps)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
Clears the currently selected modal component if it has been set.</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html#lock()">lock</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Page"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Page</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, generateXMLHelper, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.BlockStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.BlockStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.TextStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.TextStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>setBackgroundColor, setColor</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Completable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Completable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addCompletionListener, fireCompletionEvent</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.util.Lockable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.util.Lockable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>isLocked</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BMRK_GLOBAL_ELEMENT"><!-- --></A><H3>
|
|
||||||
BMRK_GLOBAL_ELEMENT</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BMRK_GLOBAL_ELEMENT</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_GLOBAL_ELEMENT">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BMRK_HEADER_ELEMENT"><!-- --></A><H3>
|
|
||||||
BMRK_HEADER_ELEMENT</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BMRK_HEADER_ELEMENT</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_HEADER_ELEMENT">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BMRK_BODY_ELEMENT"><!-- --></A><H3>
|
|
||||||
BMRK_BODY_ELEMENT</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BMRK_BODY_ELEMENT</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_BODY_ELEMENT">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BMRK_FOOTER_ELEMENT"><!-- --></A><H3>
|
|
||||||
BMRK_FOOTER_ELEMENT</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BMRK_FOOTER_ELEMENT</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_FOOTER_ELEMENT">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BMRK_XML_NS"><!-- --></A><H3>
|
|
||||||
BMRK_XML_NS</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BMRK_XML_NS</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_XML_NS">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkBasePage()"><!-- --></A><H3>
|
|
||||||
BookmarkBasePage</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkBasePage</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BookmarkBasePage(java.lang.String)"><!-- --></A><H3>
|
|
||||||
BookmarkBasePage</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkBasePage</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> view)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Parameters:</B><DD><CODE>view</CODE> - A String that specifies which application view to
|
|
||||||
show. Valid values: "user", "admin" and "null". If view is
|
|
||||||
"null", there will be no right-hand navigation link. Note -
|
|
||||||
We've decided not to have the right-hand navigation link at
|
|
||||||
all. Instead, you should create tabs. So, once the
|
|
||||||
applications are migrated, view will always be null and we can
|
|
||||||
remove view altogether.</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="lock()"><!-- --></A><H3>
|
|
||||||
lock</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>lock</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildPage()"><!-- --></A><H3>
|
|
||||||
buildPage</H3>
|
|
||||||
<PRE>
|
|
||||||
protected final void <B>buildPage</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildTitle()"><!-- --></A><H3>
|
|
||||||
buildTitle</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildTitle</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildContextBar()"><!-- --></A><H3>
|
|
||||||
buildContextBar</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildContextBar</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildGlobal(com.arsdigita.bebop.Container)"><!-- --></A><H3>
|
|
||||||
buildGlobal</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildGlobal</B>(com.arsdigita.bebop.Container global)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildHeader(com.arsdigita.bebop.Container)"><!-- --></A><H3>
|
|
||||||
buildHeader</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildHeader</B>(com.arsdigita.bebop.Container header)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildBody(com.arsdigita.bebop.Container)"><!-- --></A><H3>
|
|
||||||
buildBody</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildBody</B>(com.arsdigita.bebop.Container body)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="buildFooter(com.arsdigita.bebop.Container)"><!-- --></A><H3>
|
|
||||||
buildFooter</H3>
|
|
||||||
<PRE>
|
|
||||||
protected void <B>buildFooter</B>(com.arsdigita.bebop.Container footer)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="goModal(com.arsdigita.bebop.PageState, com.arsdigita.bebop.Component)"><!-- --></A><H3>
|
|
||||||
goModal</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>goModal</B>(com.arsdigita.bebop.PageState ps,
|
|
||||||
com.arsdigita.bebop.Component c)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Makes the given component the only visible component between
|
|
||||||
the header and footer of this page.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="goUnmodal(com.arsdigita.bebop.PageState)"><!-- --></A><H3>
|
|
||||||
goUnmodal</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>goUnmodal</B>(com.arsdigita.bebop.PageState ps)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Clears the currently selected modal component if it has been set.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="add(com.arsdigita.bebop.Component)"><!-- --></A><H3>
|
|
||||||
add</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>add</B>(com.arsdigita.bebop.Component pc)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD>Adds a component to the body.
|
|
||||||
<P>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Parameters:</B><DD><CODE>pc</CODE> - the component to be added</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getGlobal()"><!-- --></A><H3>
|
|
||||||
getGlobal</H3>
|
|
||||||
<PRE>
|
|
||||||
public com.arsdigita.bebop.Container <B>getGlobal</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getHeader()"><!-- --></A><H3>
|
|
||||||
getHeader</H3>
|
|
||||||
<PRE>
|
|
||||||
public com.arsdigita.bebop.Container <B>getHeader</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getBody()"><!-- --></A><H3>
|
|
||||||
getBody</H3>
|
|
||||||
<PRE>
|
|
||||||
public com.arsdigita.bebop.Container <B>getBody</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getFooter()"><!-- --></A><H3>
|
|
||||||
getFooter</H3>
|
|
||||||
<PRE>
|
|
||||||
public com.arsdigita.bebop.Container <B>getFooter</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkBasePage.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,380 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkEditPane.DeleteForm (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkEditPane.DeleteForm (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.DeleteForm.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.DeleteForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.Form">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkEditPane.DeleteForm</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Completable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SimpleComponent
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.FormSection
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Form
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.bebop.util.BebopConstants, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.util.Lockable</DD>
|
|
||||||
</DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Enclosing class:</B><DD><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkEditPane.DeleteForm</B><DT>extends com.arsdigita.bebop.Form<DT>implements com.arsdigita.bebop.event.FormProcessListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Form"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.Form</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>GET, POST, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.FormSection"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.FormSection</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_formModel, m_panel</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_attr</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.event.FormProcessListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.util.BebopConstants"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.util.BebopConstants</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html#BookmarkEditPane.DeleteForm()">BookmarkEditPane.DeleteForm</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html#process(com.arsdigita.bebop.event.FormSectionEvent)">process</A></B>(com.arsdigita.bebop.event.FormSectionEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Form"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Form</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.FormSection"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.FormSection</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Completable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Completable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addCompletionListener, fireCompletionEvent</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.util.Lockable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.util.Lockable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>isLocked</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkEditPane.DeleteForm()"><!-- --></A><H3>
|
|
||||||
BookmarkEditPane.DeleteForm</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkEditPane.DeleteForm</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="process(com.arsdigita.bebop.event.FormSectionEvent)"><!-- --></A><H3>
|
|
||||||
process</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>process</B>(com.arsdigita.bebop.event.FormSectionEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>process</CODE> in interface <CODE>com.arsdigita.bebop.event.FormProcessListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.DeleteForm.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.DeleteForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.Form">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,380 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.EditBookmarkForm.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.EditBookmarkForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.Form">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkEditPane.EditBookmarkForm</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Completable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SimpleComponent
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.FormSection
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Form
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.bebop.util.BebopConstants, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/EventListener.html" title="class or interface in java.util">EventListener</A>, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.util.Lockable</DD>
|
|
||||||
</DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Enclosing class:</B><DD><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkEditPane.EditBookmarkForm</B><DT>extends com.arsdigita.bebop.Form<DT>implements com.arsdigita.bebop.event.FormProcessListener</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Form"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.Form</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>GET, POST, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.FormSection"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.FormSection</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_formModel, m_panel</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_attr</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.event.FormProcessListener"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.util.BebopConstants"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.util.BebopConstants</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html#BookmarkEditPane.EditBookmarkForm(com.arsdigita.bebop.GridPanel)">BookmarkEditPane.EditBookmarkForm</A></B>(com.arsdigita.bebop.GridPanel gp)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html#process(com.arsdigita.bebop.event.FormSectionEvent)">process</A></B>(com.arsdigita.bebop.event.FormSectionEvent e)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Form"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Form</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.FormSection"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.FormSection</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Completable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Completable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addCompletionListener, fireCompletionEvent</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.util.Lockable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.util.Lockable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>isLocked</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkEditPane.EditBookmarkForm(com.arsdigita.bebop.GridPanel)"><!-- --></A><H3>
|
|
||||||
BookmarkEditPane.EditBookmarkForm</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkEditPane.EditBookmarkForm</B>(com.arsdigita.bebop.GridPanel gp)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="process(com.arsdigita.bebop.event.FormSectionEvent)"><!-- --></A><H3>
|
|
||||||
process</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>process</B>(com.arsdigita.bebop.event.FormSectionEvent e)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
<DT><B>Specified by:</B><DD><CODE>process</CODE> in interface <CODE>com.arsdigita.bebop.event.FormProcessListener</CODE></DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.EditBookmarkForm.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.EditBookmarkForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_com.arsdigita.bebop.Form">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,490 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkEditPane (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkEditPane class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkEditPane (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkEditPane</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.Completable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SimpleComponent
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.TextStylable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.BlockStylable
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SimpleContainer
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SplitPanel
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.SplitWizard
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.bebop.DynamicListWizard
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkEditPane</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable, com.arsdigita.bebop.Resettable</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkEditPane</B><DT>extends com.arsdigita.bebop.DynamicListWizard</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<b><strong>Experimental</strong></b>
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD><a href="mailto:jparsons@arsdigita.com">Jim Parsons</a></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="nested_class_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Nested Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> class</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.DeleteForm</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> class</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.EditBookmarkForm</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="nested_classes_inherited_from_class_com.arsdigita.bebop.SplitWizard"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Nested classes inherited from class com.arsdigita.bebop.SplitWizard</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>com.arsdigita.bebop.SplitWizard.HeaderPanel</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_DOWN">EVENT_SWAP_DOWN</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_UP">EVENT_SWAP_UP</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.DynamicListWizard"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.DynamicListWizard</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CURRENT_PANE, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.SplitPanel"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.SplitPanel</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BORDER</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.BlockStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.BlockStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>m_attr</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html#BookmarkEditPane()">BookmarkEditPane</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> void</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html#respond(com.arsdigita.bebop.PageState)">respond</A></B>(com.arsdigita.bebop.PageState state)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.DynamicListWizard"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.DynamicListWizard</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getAddLink, getAddPane, getEditPane, getList, getListingComponent, getListLabel, layoutComponents, reset, setAddPane, setEditPane</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SplitWizard"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SplitWizard</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getDefaultPane, getSelectionModel, getSelector, setDefaultPane, setSelectionModel, setSelector</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SplitPanel"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SplitPanel</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>generateXML, getBorder, getDivider, getHeader, getLeftComponent, getRightComponent, lock, setBorder, setDivider, setHeader, setLeftComponent, setRightComponent</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SimpleContainer"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SimpleContainer</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.BlockStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.BlockStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.TextStylable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.TextStylable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>setBackgroundColor, setColor</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.SimpleComponent"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.SimpleComponent</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Completable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.bebop.Completable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addCompletionListener, fireCompletionEvent</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.bebop.Component"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.bebop.Component</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.util.Lockable"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from interface com.arsdigita.util.Lockable</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>isLocked</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="EVENT_SWAP_UP"><!-- --></A><H3>
|
|
||||||
EVENT_SWAP_UP</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>EVENT_SWAP_UP</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkEditPane.EVENT_SWAP_UP">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="EVENT_SWAP_DOWN"><!-- --></A><H3>
|
|
||||||
EVENT_SWAP_DOWN</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>EVENT_SWAP_DOWN</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkEditPane.EVENT_SWAP_DOWN">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkEditPane()"><!-- --></A><H3>
|
|
||||||
BookmarkEditPane</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkEditPane</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="respond(com.arsdigita.bebop.PageState)"><!-- --></A><H3>
|
|
||||||
respond</H3>
|
|
||||||
<PRE>
|
|
||||||
public void <B>respond</B>(com.arsdigita.bebop.PageState state)
|
|
||||||
throws <A HREF="http://java.sun.com/j2ee/tutorial/api/javax/servlet/ServletException.html" title="class or interface in javax.servlet">ServletException</A></PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
|
|
||||||
<DT><B>Throws:</B>
|
|
||||||
<DD><CODE><A HREF="http://java.sun.com/j2ee/tutorial/api/javax/servlet/ServletException.html" title="class or interface in javax.servlet">ServletException</A></CODE></DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkEditPane.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>NEXT CLASS</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,417 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
BookmarkPortlet (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui.BookmarkPortlet class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="BookmarkPortlet (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkPortlet.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkPortlet.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.ui</FONT>
|
|
||||||
<BR>
|
|
||||||
Class BookmarkPortlet</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.DomainObject
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.domain.ObservableDomainObject
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.kernel.ACSObject
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.kernel.Resource
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.portal.Portlet
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by">com.arsdigita.portal.apportlet.AppPortlet
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.ui.BookmarkPortlet</B>
|
|
||||||
</PRE>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>BookmarkPortlet</B><DT>extends com.arsdigita.portal.apportlet.AppPortlet</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#versionId">versionId</A></B></CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.kernel.Resource"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.kernel.Resource</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#BookmarkPortlet(com.arsdigita.persistence.DataObject)">BookmarkPortlet</A></B>(com.arsdigita.persistence.DataObject dataObject)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected com.arsdigita.bebop.portal.AbstractPortletRenderer</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#doGetPortletRenderer()">doGetPortletRenderer</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#getBaseDataObjectType()">getBaseDataObjectType</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html#getZoomURL()">getZoomURL</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.portal.apportlet.AppPortlet"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>getAppPortletType, getParentApplication, getPortletRenderer, setParentApplication</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.portal.Portlet"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.portal.Portlet</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.kernel.Resource"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.kernel.Resource</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.kernel.ACSObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.kernel.ACSObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.ObservableDomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.ObservableDomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>addObserver, getObservers</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_com.arsdigita.domain.DomainObject"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class com.arsdigita.domain.DomainObject</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Field Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="versionId"><!-- --></A><H3>
|
|
||||||
versionId</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>versionId</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkPortlet.versionId">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="BASE_DATA_OBJECT_TYPE"><!-- --></A><H3>
|
|
||||||
BASE_DATA_OBJECT_TYPE</H3>
|
|
||||||
<PRE>
|
|
||||||
public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>BASE_DATA_OBJECT_TYPE</B></PRE>
|
|
||||||
<DL>
|
|
||||||
<DL>
|
|
||||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.arsdigita.bookmarks.ui.BookmarkPortlet.BASE_DATA_OBJECT_TYPE">Constant Field Values</A></DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="BookmarkPortlet(com.arsdigita.persistence.DataObject)"><!-- --></A><H3>
|
|
||||||
BookmarkPortlet</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>BookmarkPortlet</B>(com.arsdigita.persistence.DataObject dataObject)</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="getBaseDataObjectType()"><!-- --></A><H3>
|
|
||||||
getBaseDataObjectType</H3>
|
|
||||||
<PRE>
|
|
||||||
protected <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getBaseDataObjectType</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="getZoomURL()"><!-- --></A><H3>
|
|
||||||
getZoomURL</H3>
|
|
||||||
<PRE>
|
|
||||||
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getZoomURL</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="doGetPortletRenderer()"><!-- --></A><H3>
|
|
||||||
doGetPortletRenderer</H3>
|
|
||||||
<PRE>
|
|
||||||
protected com.arsdigita.bebop.portal.AbstractPortletRenderer <B>doGetPortletRenderer</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BookmarkPortlet.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>PREV CLASS</B></A>
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkPortlet.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLabelPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLabelPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.CurrentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.ParentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.ParentApplicationLinkPrinter.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkBasePage</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkBasePage.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.DeleteForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.DeleteForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.EditBookmarkForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.EditBookmarkForm.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkEditPane</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkEditPane.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.ui.BookmarkPortlet (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.ui.BookmarkPortlet (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkPortlet.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.ui.BookmarkPortlet</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui.BookmarkPortlet
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="BookmarkPortlet.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.ui (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameTitleFont">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-summary.html" target="classFrame">com.arsdigita.bookmarks.ui</A></FONT>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
Classes</FONT>
|
|
||||||
<FONT CLASS="FrameItemFont">
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkBasePage</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkEditPane</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui" target="classFrame">BookmarkPortlet</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,156 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.ui (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.ui package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.ui (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/installer/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/util/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Package com.arsdigita.bookmarks.ui
|
|
||||||
</H2>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A></B></TD>
|
|
||||||
<TD>BasePage class</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A></B></TD>
|
|
||||||
<TD><b><strong>Experimental</strong></b></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/installer/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/util/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,191 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.ui Class Hierarchy (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.ui Class Hierarchy (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/installer/package-tree.html"><B>PREV</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/util/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
Hierarchy For Package com.arsdigita.bookmarks.ui
|
|
||||||
</H2>
|
|
||||||
</CENTER>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../overview-tree.html">All Packages</A></DL>
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Class Hierarchy
|
|
||||||
</H2>
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang"><B>Object</B></A><UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLabelPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLinkPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.ParentApplicationLinkPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SimpleComponent (implements java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.DeleteForm</B></A> (implements com.arsdigita.bebop.event.FormProcessListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.EditBookmarkForm</B></A> (implements com.arsdigita.bebop.event.FormProcessListener)
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.TextStylable<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.BlockStylable<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage</B></A></UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SplitPanel<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SplitWizard<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.DynamicListWizard (implements com.arsdigita.bebop.Resettable)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.ObservableDomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.kernel.ACSObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.kernel.Resource<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.portal.Portlet<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.portal.apportlet.AppPortlet<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="../../../../com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkPortlet</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/installer/package-tree.html"><B>PREV</B></A>
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/util/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Package com.arsdigita.bookmarks.ui (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Package com.arsdigita.bookmarks.ui (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Package<br>com.arsdigita.bookmarks.ui</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.ui
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,311 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
GlobalizationUtil (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.util.GlobalizationUtil class">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="GlobalizationUtil (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/GlobalizationUtil.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="GlobalizationUtil.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<!-- ======== START OF CLASS DATA ======== -->
|
|
||||||
<H2>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
com.arsdigita.bookmarks.util</FONT>
|
|
||||||
<BR>
|
|
||||||
Class GlobalizationUtil</H2>
|
|
||||||
<PRE>
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
|
|
||||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>com.arsdigita.bookmarks.util.GlobalizationUtil</B>
|
|
||||||
</PRE>
|
|
||||||
<DL>
|
|
||||||
<DT><B>All Implemented Interfaces:</B> <DD>com.arsdigita.globalization.Globalized</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<DL>
|
|
||||||
<DT>public class <B>GlobalizationUtil</B><DT>extends <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A><DT>implements com.arsdigita.globalization.Globalized</DL>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<p>
|
|
||||||
.
|
|
||||||
Contains methods to simplify globalizing keys
|
|
||||||
</p>
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Version:</B></DT>
|
|
||||||
<DD>$Revision: #1 $ $Date: 2003/03/28 $</DD>
|
|
||||||
<DT><B>Author:</B></DT>
|
|
||||||
<DD><a href="mailto:sarnold@redhat.com">sarnold@redhat.com</a></DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<!-- ======== NESTED CLASS SUMMARY ======== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========== FIELD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="field_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Field Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="fields_inherited_from_class_com.arsdigita.globalization.Globalized"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Fields inherited from interface com.arsdigita.globalization.Globalized</B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE>DATE_DISPLAY_FORMAT, TIME_DISPLAY_FORMAT, versionId</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Constructor Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html#GlobalizationUtil()">GlobalizationUtil</A></B>()</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<!-- ========== METHOD SUMMARY =========== -->
|
|
||||||
|
|
||||||
<A NAME="method_summary"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Method Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static com.arsdigita.globalization.GlobalizedMessage</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html#globalize(java.lang.String)">globalize</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> key)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
||||||
<CODE>static com.arsdigita.globalization.GlobalizedMessage</CODE></FONT></TD>
|
|
||||||
<TD><CODE><B><A HREF="../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html#globalize(java.lang.String, java.lang.Object[])">globalize</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> key,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>[] args)</CODE>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<!-- ============ FIELD DETAIL =========== -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
||||||
|
|
||||||
<A NAME="constructor_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Constructor Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="GlobalizationUtil()"><!-- --></A><H3>
|
|
||||||
GlobalizationUtil</H3>
|
|
||||||
<PRE>
|
|
||||||
public <B>GlobalizationUtil</B>()</PRE>
|
|
||||||
<DL>
|
|
||||||
</DL>
|
|
||||||
|
|
||||||
<!-- ============ METHOD DETAIL ========== -->
|
|
||||||
|
|
||||||
<A NAME="method_detail"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=1><FONT SIZE="+2">
|
|
||||||
<B>Method Detail</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<A NAME="globalize(java.lang.String)"><!-- --></A><H3>
|
|
||||||
globalize</H3>
|
|
||||||
<PRE>
|
|
||||||
public static com.arsdigita.globalization.GlobalizedMessage <B>globalize</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> key)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<A NAME="globalize(java.lang.String, java.lang.Object[])"><!-- --></A><H3>
|
|
||||||
globalize</H3>
|
|
||||||
<PRE>
|
|
||||||
public static com.arsdigita.globalization.GlobalizedMessage <B>globalize</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> key,
|
|
||||||
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>[] args)</PRE>
|
|
||||||
<DL>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
<DD><DL>
|
|
||||||
</DL>
|
|
||||||
</DD>
|
|
||||||
</DL>
|
|
||||||
<!-- ========= END OF CLASS DATA ========= -->
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/GlobalizationUtil.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV CLASS
|
|
||||||
NEXT CLASS</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="GlobalizationUtil.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
||||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
||||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Class com.arsdigita.bookmarks.util.GlobalizationUtil (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Class com.arsdigita.bookmarks.util.GlobalizationUtil (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="GlobalizationUtil.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Class<br>com.arsdigita.bookmarks.util.GlobalizationUtil</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.util.GlobalizationUtil
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="GlobalizationUtil.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.util (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.util package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
<FONT size="+1" CLASS="FrameTitleFont">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/util/package-summary.html" target="classFrame">com.arsdigita.bookmarks.util</A></FONT>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
Classes</FONT>
|
|
||||||
<FONT CLASS="FrameItemFont">
|
|
||||||
<BR>
|
|
||||||
<A HREF="GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util" target="classFrame">GlobalizationUtil</A></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.util (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="com.arsdigita.bookmarks.util package">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.util (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
NEXT PACKAGE</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Package com.arsdigita.bookmarks.util
|
|
||||||
</H2>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Class Summary</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="15%"><B><A HREF="../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A></B></TD>
|
|
||||||
<TD>
|
|
||||||
.</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-summary.html"><B>PREV PACKAGE</B></A>
|
|
||||||
NEXT PACKAGE</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,146 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
com.arsdigita.bookmarks.util Class Hierarchy (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="com.arsdigita.bookmarks.util Class Hierarchy (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-tree.html"><B>PREV</B></A>
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
Hierarchy For Package com.arsdigita.bookmarks.util
|
|
||||||
</H2>
|
|
||||||
</CENTER>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../overview-tree.html">All Packages</A></DL>
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Class Hierarchy
|
|
||||||
</H2>
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang"><B>Object</B></A><UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.util.<A HREF="../../../../com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util"><B>GlobalizationUtil</B></A> (implements com.arsdigita.globalization.Globalized)
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../com/arsdigita/bookmarks/ui/package-tree.html"><B>PREV</B></A>
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Uses of Package com.arsdigita.bookmarks.util (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Uses of Package com.arsdigita.bookmarks.util (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Uses of Package<br>com.arsdigita.bookmarks.util</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
No usage of com.arsdigita.bookmarks.util
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,298 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Constant Field Values (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Constant Field Values (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H1>
|
|
||||||
Constant Field Values</H1>
|
|
||||||
</CENTER>
|
|
||||||
<HR SIZE="4" NOSHADE>
|
|
||||||
<B>Contents</B><UL>
|
|
||||||
<LI><A HREF="#com.arsdigita">com.arsdigita.*</A>
|
|
||||||
</UL>
|
|
||||||
|
|
||||||
<A NAME="com.arsdigita"><!-- --></A>
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD ALIGN="left"><FONT SIZE="+2">
|
|
||||||
<B>com.arsdigita.*</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ApplicationAuthenticationListener.versionId"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#versionId">versionId</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/ApplicationAuthenticationListener.java#2 $$Author: jorris $$DateTime: 2003/04/01 16:53:21 $"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.Bookmark.BASE_DATA_OBJECT_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/Bookmark.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"com.arsdigita.workspace.Bookmark"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.BookmarkApplication.BASE_DATA_OBJECT_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"com.arsdigita.workspace.BookmarkApplication"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.BookmarkApplication.versionId"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#versionId">versionId</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/BookmarkApplication.java#3 $ by $Author: dennis $, $DateTime: 2003/07/10 14:47:30 $"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_BODY_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_BODY_ELEMENT">BMRK_BODY_ELEMENT</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"bmrk:body"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_FOOTER_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_FOOTER_ELEMENT">BMRK_FOOTER_ELEMENT</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"bmrk:footer"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_GLOBAL_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_GLOBAL_ELEMENT">BMRK_GLOBAL_ELEMENT</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"bmrk:global"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_HEADER_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_HEADER_ELEMENT">BMRK_HEADER_ELEMENT</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"bmrk:header"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkBasePage.BMRK_XML_NS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_XML_NS">BMRK_XML_NS</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"http://www.redhat.com/bmrk/1.0"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkEditPane.EVENT_SWAP_DOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_DOWN">EVENT_SWAP_DOWN</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"swapDown"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkEditPane.EVENT_SWAP_UP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_UP">EVENT_SWAP_UP</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"swapUp"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
||||||
<TD COLSPAN=3><B>com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A></B></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkPortlet.BASE_DATA_OBJECT_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#BASE_DATA_OBJECT_TYPE">BASE_DATA_OBJECT_TYPE</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"com.arsdigita.workspace.BookmarkPortlet"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<A NAME="com.arsdigita.bookmarks.ui.BookmarkPortlet.versionId"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
|
||||||
<CODE>public static final <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD>
|
|
||||||
<TD ALIGN="left"><CODE><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#versionId">versionId</A></CODE></TD>
|
|
||||||
<TD ALIGN="right"><CODE>"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/ui/BookmarkPortlet.java#5 $$Author: jparsons $$DateTime: 2003/05/28 17:31:24 $"</CODE></TD>
|
|
||||||
</TR>
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,134 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Deprecated List (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Deprecated List (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
<B>Deprecated API</B></H2>
|
|
||||||
</CENTER>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,193 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
API Help (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="API Help (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H1>
|
|
||||||
How This API Document Is Organized</H1>
|
|
||||||
</CENTER>
|
|
||||||
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
|
|
||||||
Overview</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Package</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
|
|
||||||
<LI>Interfaces (italic)<LI>Classes<LI>Exceptions<LI>Errors</UL>
|
|
||||||
</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Class/Interface</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
|
|
||||||
<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
|
|
||||||
<P>
|
|
||||||
<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
|
|
||||||
<P>
|
|
||||||
<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
|
|
||||||
Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Use</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Tree (Class Hierarchy)</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
|
|
||||||
<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
|
|
||||||
</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Deprecated API</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Index</H3>
|
|
||||||
<BLOCKQUOTE>
|
|
||||||
The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
|
|
||||||
<H3>
|
|
||||||
Prev/Next</H3>
|
|
||||||
These links take you to the next or previous class, interface, package, or related page.<H3>
|
|
||||||
Frames/No Frames</H3>
|
|
||||||
These links show and hide the HTML frames. All pages are available with or without frames.
|
|
||||||
<P>
|
|
||||||
<H3>
|
|
||||||
Serialized Form</H3>
|
|
||||||
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
|
|
||||||
<P>
|
|
||||||
<FONT SIZE="-1">
|
|
||||||
<EM>
|
|
||||||
This help file applies to API documentation generated using the standard doclet.</EM>
|
|
||||||
</FONT>
|
|
||||||
<BR>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,503 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Index (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Index (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_V_">V</A> <HR>
|
|
||||||
<A NAME="_A_"><!-- --></A><H2>
|
|
||||||
<B>A</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><B>ApplicationAuthenticationListener</B></A> - class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>.<DD>A RequestListener that verifies the user
|
|
||||||
has a given privilege on the current Application.<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#ApplicationAuthenticationListener(java.lang.String)"><B>ApplicationAuthenticationListener(String)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#add(com.arsdigita.bebop.Component)"><B>add(Component)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>Adds a component to the body.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#afterSave()"><B>afterSave()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_B_"><!-- --></A><H2>
|
|
||||||
<B>B</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#BASE_DATA_OBJECT_TYPE"><B>BASE_DATA_OBJECT_TYPE</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>The type of the <CODE>DataObject</CODE>
|
|
||||||
that stands behind this <CODE>DomainObject</CODE>.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#BASE_DATA_OBJECT_TYPE"><B>BASE_DATA_OBJECT_TYPE</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#BASE_DATA_OBJECT_TYPE"><B>BASE_DATA_OBJECT_TYPE</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_BODY_ELEMENT"><B>BMRK_BODY_ELEMENT</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_FOOTER_ELEMENT"><B>BMRK_FOOTER_ELEMENT</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_GLOBAL_ELEMENT"><B>BMRK_GLOBAL_ELEMENT</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_HEADER_ELEMENT"><B>BMRK_HEADER_ELEMENT</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BMRK_XML_NS"><B>BMRK_XML_NS</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>Bookmark</B></A> - class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>.<DD>A bookmark.<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#Bookmark(com.arsdigita.persistence.DataObject)"><B>Bookmark(DataObject)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#Bookmark(java.lang.String, java.lang.String)"><B>Bookmark(String, String)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>BookmarkApplication</B></A> - class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>.<DD>BookmarkApplication class.<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(com.arsdigita.persistence.OID)"><B>BookmarkApplication(OID)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(java.math.BigDecimal)"><B>BookmarkApplication(BigDecimal)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#BookmarkApplication(com.arsdigita.persistence.DataObject)"><B>BookmarkApplication(DataObject)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>.<DD>BasePage class<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BookmarkBasePage()"><B>BookmarkBasePage()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#BookmarkBasePage(java.lang.String)"><B>BookmarkBasePage(String)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLabelPrinter</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLabelPrinter</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html#BookmarkBasePage.CurrentApplicationLabelPrinter()"><B>BookmarkBasePage.CurrentApplicationLabelPrinter()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLabelPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLinkPrinter</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLinkPrinter</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html#BookmarkBasePage.CurrentApplicationLinkPrinter()"><B>BookmarkBasePage.CurrentApplicationLinkPrinter()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLinkPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.ParentApplicationLinkPrinter</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.ParentApplicationLinkPrinter</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html#BookmarkBasePage.ParentApplicationLinkPrinter()"><B>BookmarkBasePage.ParentApplicationLinkPrinter()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.ParentApplicationLinkPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>BookmarkCollection</B></A> - class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#BookmarkCollection(com.arsdigita.persistence.DataCollection)"><B>BookmarkCollection(DataCollection)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><B>BookmarkDispatcher</B></A> - class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks">BookmarkDispatcher</A>.<DD>Bookmark dispatcher for both Bebop-backed and other URLs.<DT><A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html#BookmarkDispatcher()"><B>BookmarkDispatcher()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks">BookmarkDispatcher</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>.<DD><b><strong>Experimental</strong></b><DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#BookmarkEditPane()"><B>BookmarkEditPane()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.DeleteForm</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.DeleteForm</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html#BookmarkEditPane.DeleteForm()"><B>BookmarkEditPane.DeleteForm()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.DeleteForm</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.EditBookmarkForm</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.EditBookmarkForm</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html#BookmarkEditPane.EditBookmarkForm(com.arsdigita.bebop.GridPanel)"><B>BookmarkEditPane.EditBookmarkForm(GridPanel)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.EditBookmarkForm</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkPortlet</B></A> - class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>.<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#BookmarkPortlet(com.arsdigita.persistence.DataObject)"><B>BookmarkPortlet(DataObject)</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildBody(com.arsdigita.bebop.Container)"><B>buildBody(Container)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildContextBar()"><B>buildContextBar()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildFooter(com.arsdigita.bebop.Container)"><B>buildFooter(Container)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildGlobal(com.arsdigita.bebop.Container)"><B>buildGlobal(Container)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildHeader(com.arsdigita.bebop.Container)"><B>buildHeader(Container)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildPage()"><B>buildPage()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#buildTitle()"><B>buildTitle()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_C_"><!-- --></A><H2>
|
|
||||||
<B>C</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/package-summary.html"><B>com.arsdigita.bookmarks</B></A> - package com.arsdigita.bookmarks<DD> <DT><A HREF="com/arsdigita/bookmarks/installer/package-summary.html"><B>com.arsdigita.bookmarks.installer</B></A> - package com.arsdigita.bookmarks.installer<DD> <DT><A HREF="com/arsdigita/bookmarks/ui/package-summary.html"><B>com.arsdigita.bookmarks.ui</B></A> - package com.arsdigita.bookmarks.ui<DD> <DT><A HREF="com/arsdigita/bookmarks/util/package-summary.html"><B>com.arsdigita.bookmarks.util</B></A> - package com.arsdigita.bookmarks.util<DD> <DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#create(java.lang.String, java.lang.String, com.arsdigita.web.Application)"><B>create(String, String, Application)</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>Use this instead of the constructor to create new Bookmark
|
|
||||||
Application objects
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#createBookmark(java.lang.String, java.lang.String)"><B>createBookmark(String, String)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_D_"><!-- --></A><H2>
|
|
||||||
<B>D</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#denyRequest(com.arsdigita.bebop.PageState)"><B>denyRequest(PageState)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>Action performed if authentication failed.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#doGetPortletRenderer()"><B>doGetPortletRenderer()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_E_"><!-- --></A><H2>
|
|
||||||
<B>E</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_DOWN"><B>EVENT_SWAP_DOWN</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#EVENT_SWAP_UP"><B>EVENT_SWAP_UP</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_G_"><!-- --></A><H2>
|
|
||||||
<B>G</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util"><B>GlobalizationUtil</B></A> - class com.arsdigita.bookmarks.util.<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A>.<DD>
|
|
||||||
.<DT><A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html#GlobalizationUtil()"><B>GlobalizationUtil()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.util.<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getAuthor()"><B>getAuthor()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the original creator's name for this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getBaseDataObjectType()"><B>getBaseDataObjectType()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#getBaseDataObjectType()"><B>getBaseDataObjectType()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#getBaseDataObjectType()"><B>getBaseDataObjectType()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getBody()"><B>getBody()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getBookmark()"><B>getBookmark()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>Get the current item as a Bookmark domain object.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getBookmarkApplication()"><B>getBookmarkApplication()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#getBookmarks()"><B>getBookmarks()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getCreateDate()"><B>getCreateDate()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the Creation Date of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getDescription()"><B>getDescription()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the Description of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getDomainObject()"><B>getDomainObject()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>Get the current item as a domain object.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getFooter()"><B>getFooter()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getGlobal()"><B>getGlobal()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#getHeader()"><B>getHeader()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getID()"><B>getID()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>Get the ID for the Bookmark for the current row.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getModDate()"><B>getModDate()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the last modification date of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getName()"><B>getName()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the title of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getName()"><B>getName()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>Get the name for the Bookmark for the current row.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getNewWindow()"><B>getNewWindow()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getNewWindow()"><B>getNewWindow()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getNumVisits()"><B>getNumVisits()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the number of times this Bookmark has been visited,
|
|
||||||
and return value as a String.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#getRequiredPrivilege()"><B>getRequiredPrivilege()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getSortKey()"><B>getSortKey()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the sort key of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#getURL()"><B>getURL()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Get the URL of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkCollection.html#getURL()"><B>getURL()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks">BookmarkCollection</A>
|
|
||||||
<DD>Get the url for the bookmark for the current row.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#getZoomURL()"><B>getZoomURL()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html#globalize(java.lang.String)"><B>globalize(String)</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.util.<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html#globalize(java.lang.String, java.lang.Object[])"><B>globalize(String, Object[])</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.util.<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util">GlobalizationUtil</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#goModal(com.arsdigita.bebop.PageState, com.arsdigita.bebop.Component)"><B>goModal(PageState, Component)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>Makes the given component the only visible component between
|
|
||||||
the header and footer of this page.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#goUnmodal(com.arsdigita.bebop.PageState)"><B>goUnmodal(PageState)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>Clears the currently selected modal component if it has been set.
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_I_"><!-- --></A><H2>
|
|
||||||
<B>I</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer"><B>Initializer</B></A> - class com.arsdigita.bookmarks.installer.<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer">Initializer</A>.<DD><strong>Experimental</strong><DT><A HREF="com/arsdigita/bookmarks/installer/Initializer.html#Initializer()"><B>Initializer()</B></A> -
|
|
||||||
Constructor for class com.arsdigita.bookmarks.installer.<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer">Initializer</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/installer/Initializer.html#init(com.arsdigita.runtime.DomainInitEvent)"><B>init(DomainInitEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.installer.<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer">Initializer</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_L_"><!-- --></A><H2>
|
|
||||||
<B>L</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html#lock()"><B>lock()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_N_"><!-- --></A><H2>
|
|
||||||
<B>N</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#normalizeBookmarkSortKeys()"><B>normalizeBookmarkSortKeys()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_P_"><!-- --></A><H2>
|
|
||||||
<B>P</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#pageRequested(com.arsdigita.bebop.event.RequestEvent)"><B>pageRequested(RequestEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>Checks whether the user is logged in.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)"><B>prepare(PrintEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLabelPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)"><B>prepare(PrintEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.CurrentApplicationLinkPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html#prepare(com.arsdigita.bebop.event.PrintEvent)"><B>prepare(PrintEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui">BookmarkBasePage.ParentApplicationLinkPrinter</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html#process(com.arsdigita.bebop.event.FormSectionEvent)"><B>process(FormSectionEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.DeleteForm</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html#process(com.arsdigita.bebop.event.FormSectionEvent)"><B>process(FormSectionEvent)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane.EditBookmarkForm</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_R_"><!-- --></A><H2>
|
|
||||||
<B>R</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#removeBookmark(com.arsdigita.bookmarks.Bookmark)"><B>removeBookmark(Bookmark)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html#respond(com.arsdigita.bebop.PageState)"><B>respond(PageState)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui">BookmarkEditPane</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#retrieveAllBookmarks()"><B>retrieveAllBookmarks()</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(java.math.BigDecimal)"><B>retrieveBookmark(BigDecimal)</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Retrieve an existing Bookmark based on an ID.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.DataObject)"><B>retrieveBookmark(DataObject)</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Retrieve an existing Bookmark based on a data object.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#retrieveBookmark(com.arsdigita.persistence.OID)"><B>retrieveBookmark(OID)</B></A> -
|
|
||||||
Static method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Retrieve an existing Bookmark based on an OID.
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_S_"><!-- --></A><H2>
|
|
||||||
<B>S</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setBookmarkApplication(com.arsdigita.bookmarks.BookmarkApplication)"><B>setBookmarkApplication(BookmarkApplication)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setDescription(java.lang.String)"><B>setDescription(String)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Set the description for this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setModDate()"><B>setModDate()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Set the mod date for this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setName(java.lang.String)"><B>setName(String)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Set the title of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setNewWindow(boolean)"><B>setNewWindow(boolean)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#setRequiredPrivilege(java.lang.String)"><B>setRequiredPrivilege(String)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setSortKey(int)"><B>setSortKey(int)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#setURL(java.lang.String)"><B>setURL(String)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Set the URL of this Bookmark.
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithNext(com.arsdigita.bookmarks.Bookmark)"><B>swapBookmarkWithNext(Bookmark)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#swapBookmarkWithPrevious(com.arsdigita.bookmarks.Bookmark)"><B>swapBookmarkWithPrevious(Bookmark)</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A NAME="_V_"><!-- --></A><H2>
|
|
||||||
<B>V</B></H2>
|
|
||||||
<DL>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html#versionId"><B>versionId</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks">ApplicationAuthenticationListener</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/BookmarkApplication.html#versionId"><B>versionId</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks">BookmarkApplication</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html#versionId"><B>versionId</B></A> -
|
|
||||||
Static variable in class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui">BookmarkPortlet</A>
|
|
||||||
<DD>
|
|
||||||
<DT><A HREF="com/arsdigita/bookmarks/Bookmark.html#visitsPlusPlus()"><B>visitsPlusPlus()</B></A> -
|
|
||||||
Method in class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks">Bookmark</A>
|
|
||||||
<DD>Increment the counter for number of visits to this Bookmark.
|
|
||||||
</DL>
|
|
||||||
<HR>
|
|
||||||
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_V_">V</A>
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc on Thu Jun 01 10:57:54 UTC 2006-->
|
|
||||||
<TITLE>
|
|
||||||
Bookmarks API Documentation
|
|
||||||
</TITLE>
|
|
||||||
</HEAD>
|
|
||||||
<FRAMESET cols="20%,80%">
|
|
||||||
<FRAMESET rows="30%,70%">
|
|
||||||
<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
|
|
||||||
<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
|
|
||||||
</FRAMESET>
|
|
||||||
<FRAME src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions">
|
|
||||||
<NOFRAMES>
|
|
||||||
<H2>
|
|
||||||
Frame Alert</H2>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
|
|
||||||
<BR>
|
|
||||||
Link to<A HREF="overview-summary.html">Non-frame version.</A>
|
|
||||||
</NOFRAMES>
|
|
||||||
</FRAMESET>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Overview (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="Overview, <h1>Bookmarks API Documentation</h1>">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white">
|
|
||||||
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT size="+1" CLASS="FrameTitleFont">
|
|
||||||
<B></B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="allclasses-frame.html" target="packageFrame">All Classes</A></FONT>
|
|
||||||
<P>
|
|
||||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
|
||||||
Packages</FONT>
|
|
||||||
<BR>
|
|
||||||
<FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/package-frame.html" target="packageFrame">com.arsdigita.bookmarks</A></FONT>
|
|
||||||
<BR>
|
|
||||||
<FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/installer/package-frame.html" target="packageFrame">com.arsdigita.bookmarks.installer</A></FONT>
|
|
||||||
<BR>
|
|
||||||
<FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/ui/package-frame.html" target="packageFrame">com.arsdigita.bookmarks.ui</A></FONT>
|
|
||||||
<BR>
|
|
||||||
<FONT CLASS="FrameItemFont"><A HREF="com/arsdigita/bookmarks/util/package-frame.html" target="packageFrame">com.arsdigita.bookmarks.util</A></FONT>
|
|
||||||
<BR>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,161 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Overview (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
<META NAME="keywords" CONTENT="Overview, <h1>Bookmarks API Documentation</h1>">
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Overview (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H1>
|
|
||||||
<h1>Bookmarks API Documentation</h1>
|
|
||||||
</H1>
|
|
||||||
</CENTER>
|
|
||||||
|
|
||||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
||||||
<TD COLSPAN=2><FONT SIZE="+2">
|
|
||||||
<B>Packages</B></FONT></TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="20%"><B><A HREF="com/arsdigita/bookmarks/package-summary.html">com.arsdigita.bookmarks</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="20%"><B><A HREF="com/arsdigita/bookmarks/installer/package-summary.html">com.arsdigita.bookmarks.installer</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="20%"><B><A HREF="com/arsdigita/bookmarks/ui/package-summary.html">com.arsdigita.bookmarks.ui</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
||||||
<TD WIDTH="20%"><B><A HREF="com/arsdigita/bookmarks/util/package-summary.html">com.arsdigita.bookmarks.util</A></B></TD>
|
|
||||||
<TD> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,212 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
Class Hierarchy (Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title="Class Hierarchy (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
||||||
<A NAME="navbar_top"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_top"></A>
|
|
||||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<CENTER>
|
|
||||||
<H2>
|
|
||||||
Hierarchy For All Packages</H2>
|
|
||||||
</CENTER>
|
|
||||||
<DL>
|
|
||||||
<DT><B>Package Hierarchies:</B><DD><A HREF="com/arsdigita/bookmarks/package-tree.html">com.arsdigita.bookmarks</A>, <A HREF="com/arsdigita/bookmarks/installer/package-tree.html">com.arsdigita.bookmarks.installer</A>, <A HREF="com/arsdigita/bookmarks/ui/package-tree.html">com.arsdigita.bookmarks.ui</A>, <A HREF="com/arsdigita/bookmarks/util/package-tree.html">com.arsdigita.bookmarks.util</A></DL>
|
|
||||||
<HR>
|
|
||||||
<H2>
|
|
||||||
Class Hierarchy
|
|
||||||
</H2>
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang"><B>Object</B></A><UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLabelPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.CurrentApplicationLinkPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage.ParentApplicationLinkPrinter</B></A> (implements com.arsdigita.bebop.event.PrintListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SimpleComponent (implements java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, com.arsdigita.bebop.Component)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.DeleteForm</B></A> (implements com.arsdigita.bebop.event.FormProcessListener)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane.EditBookmarkForm</B></A> (implements com.arsdigita.bebop.event.FormProcessListener)
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.TextStylable<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.BlockStylable<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkBasePage.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkBasePage</B></A></UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SplitPanel<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.SplitWizard<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.DynamicListWizard (implements com.arsdigita.bebop.Resettable)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkEditPane.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkEditPane</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.installer.<A HREF="com/arsdigita/bookmarks/installer/Initializer.html" title="class in com.arsdigita.bookmarks.installer"><B>Initializer</B></A></UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.ObservableDomainObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.kernel.ACSObject<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/Bookmark.html" title="class in com.arsdigita.bookmarks"><B>Bookmark</B></A><LI TYPE="circle">class com.arsdigita.kernel.Resource<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.web.Application<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkApplication.html" title="class in com.arsdigita.bookmarks"><B>BookmarkApplication</B></A></UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.portal.Portlet<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.portal.apportlet.AppPortlet<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.ui.<A HREF="com/arsdigita/bookmarks/ui/BookmarkPortlet.html" title="class in com.arsdigita.bookmarks.ui"><B>BookmarkPortlet</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.domain.DomainCollection<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkCollection.html" title="class in com.arsdigita.bookmarks"><B>BookmarkCollection</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.util.<A HREF="com/arsdigita/bookmarks/util/GlobalizationUtil.html" title="class in com.arsdigita.bookmarks.util"><B>GlobalizationUtil</B></A> (implements com.arsdigita.globalization.Globalized)
|
|
||||||
<LI TYPE="circle">class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.page.BebopMapDispatcher<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bebop.BebopMapDispatcher<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/BookmarkDispatcher.html" title="class in com.arsdigita.bookmarks"><B>BookmarkDispatcher</B></A></UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.ui.login.UserAuthenticationListener (implements com.arsdigita.bebop.event.RequestListener)
|
|
||||||
<UL>
|
|
||||||
<LI TYPE="circle">class com.arsdigita.bookmarks.<A HREF="com/arsdigita/bookmarks/ApplicationAuthenticationListener.html" title="class in com.arsdigita.bookmarks"><B>ApplicationAuthenticationListener</B></A> (implements com.arsdigita.bebop.event.RequestListener)
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
</UL>
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
||||||
<A NAME="navbar_bottom"><!-- --></A>
|
|
||||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
||||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
||||||
<TR>
|
|
||||||
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
||||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
||||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
||||||
<TR ALIGN="center" VALIGN="top">
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
|
|
||||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
||||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
</TD>
|
|
||||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
||||||
</EM>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
|
|
||||||
<TR>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
PREV
|
|
||||||
NEXT</FONT></TD>
|
|
||||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
||||||
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
|
|
||||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
<!--
|
|
||||||
if(window==top) {
|
|
||||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
|
||||||
}
|
|
||||||
//-->
|
|
||||||
</SCRIPT>
|
|
||||||
<NOSCRIPT>
|
|
||||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
|
||||||
</NOSCRIPT>
|
|
||||||
|
|
||||||
</FONT></TD>
|
|
||||||
</TR>
|
|
||||||
</TABLE>
|
|
||||||
<A NAME="skip-navbar_bottom"></A>
|
|
||||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
<i>Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved.</i> Generated at June 1 2006:1057 UTC
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
com.arsdigita.bookmarks
|
|
||||||
com.arsdigita.bookmarks.installer
|
|
||||||
com.arsdigita.bookmarks.ui
|
|
||||||
com.arsdigita.bookmarks.util
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
||||||
<!--NewPage-->
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<!-- Generated by javadoc (build 1.4.2-01) on Thu Jun 01 10:57:54 UTC 2006 -->
|
|
||||||
<TITLE>
|
|
||||||
(Bookmarks API Documentation)
|
|
||||||
</TITLE>
|
|
||||||
|
|
||||||
|
|
||||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
|
||||||
|
|
||||||
<SCRIPT type="text/javascript">
|
|
||||||
function windowTitle()
|
|
||||||
{
|
|
||||||
parent.document.title=" (Bookmarks API Documentation)";
|
|
||||||
}
|
|
||||||
</SCRIPT>
|
|
||||||
|
|
||||||
</HEAD>
|
|
||||||
|
|
||||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
|
|
||||||
<BR>
|
|
||||||
<CENTER>
|
|
||||||
The front page has been relocated.Please see:
|
|
||||||
<BR>
|
|
||||||
<A HREF="index.html">Frame version</A>
|
|
||||||
<BR>
|
|
||||||
<A HREF="overview-summary.html">Non-frame version.</A></CENTER>
|
|
||||||
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 57 B |
|
|
@ -1,29 +0,0 @@
|
||||||
/* Javadoc style sheet */
|
|
||||||
|
|
||||||
/* Define colors, fonts and other style attributes here to override the defaults */
|
|
||||||
|
|
||||||
/* Page background color */
|
|
||||||
body { background-color: #FFFFFF }
|
|
||||||
|
|
||||||
/* Headings */
|
|
||||||
h1 { font-size: 145% }
|
|
||||||
|
|
||||||
/* Table colors */
|
|
||||||
.TableHeadingColor { background: #CCCCFF } /* Dark mauve */
|
|
||||||
.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */
|
|
||||||
.TableRowColor { background: #FFFFFF } /* White */
|
|
||||||
|
|
||||||
/* Font used in left-hand frame lists */
|
|
||||||
.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif }
|
|
||||||
.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif }
|
|
||||||
.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif }
|
|
||||||
|
|
||||||
/* Navigation bar fonts and colors */
|
|
||||||
.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */
|
|
||||||
.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */
|
|
||||||
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
|
|
||||||
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
|
|
||||||
|
|
||||||
.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
|
|
||||||
.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
usr/share/java/ccm-bookmarks-6.3.0
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
usr/share/java/ccm-bookmarks-6.3.0.jar
|
|
||||||
usr/share/java/ccm-bookmarks-6.3.0-pdl.jar
|
|
||||||
usr/share/java/ccm-bookmarks-6.3.0-sql.jar
|
|
||||||
usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks.xsl
|
|
||||||
usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks-portlet.xsl
|
|
||||||
usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/__ccm__/apps/bookmarks/xsl/index.xsl
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
# Automatically added by dh_installdebconf
|
|
||||||
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
db_purge
|
|
||||||
fi
|
|
||||||
# End automatically added section
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
misc:Depends=debconf (>= 0.5) | debconf-2.0
|
|
||||||
|
|
@ -1,79 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
db_capb backup
|
|
||||||
|
|
||||||
HOSTNAME=`hostname -f` 2>/dev/null || true
|
|
||||||
|
|
||||||
if [ -n "$HOSTNAME" ]; then
|
|
||||||
db_metaget ccm/shared/waf_web_server default || true
|
|
||||||
PORTNUM=`echo $RET | cut -d: -f2`
|
|
||||||
db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$EMAIL" ]; then
|
|
||||||
db_set ccm/shared/waf_admin_email "$EMAIL" || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
STATE=1
|
|
||||||
LASTSTATE=5
|
|
||||||
|
|
||||||
while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do
|
|
||||||
case "$STATE" in
|
|
||||||
1)
|
|
||||||
# Database questions
|
|
||||||
db_input high ccm/shared/dbase_type || true
|
|
||||||
db_input high ccm/shared/dbase_host || true
|
|
||||||
db_input high ccm/shared/dbase_name || true
|
|
||||||
db_input high ccm/shared/dbase_user || true
|
|
||||||
db_input high ccm/shared/dbase_password || true
|
|
||||||
|
|
||||||
;;
|
|
||||||
2)
|
|
||||||
# Server address
|
|
||||||
db_input high ccm/shared/waf_web_server || true
|
|
||||||
;;
|
|
||||||
3)
|
|
||||||
# Admin questions
|
|
||||||
db_input high ccm/shared/waf_admin_email || true
|
|
||||||
db_input high ccm/shared/waf_admin_name_given || true
|
|
||||||
db_input high ccm/shared/waf_admin_name_family || true
|
|
||||||
db_input high ccm/shared/waf_admin_password || true
|
|
||||||
db_input high ccm/shared/waf_admin_password_question || true
|
|
||||||
db_input high ccm/shared/waf_admin_password_answer || true
|
|
||||||
;;
|
|
||||||
4)
|
|
||||||
# When to load the applications
|
|
||||||
db_input medium ccm/shared/ccm_load_apps_at_install_p || true
|
|
||||||
;;
|
|
||||||
5)
|
|
||||||
# Whether to set up the [local] database
|
|
||||||
db_get ccm/shared/dbase_host || true
|
|
||||||
if [ "$RET" = "localhost" ]; then
|
|
||||||
db_input medium ccm/shared/pg_set_up_database_p || true
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
# Add additional states here, making sure to
|
|
||||||
# increment LASTSTATE.
|
|
||||||
esac
|
|
||||||
|
|
||||||
if db_go; then
|
|
||||||
STATE=$(($STATE + 1))
|
|
||||||
else
|
|
||||||
STATE=$(($STATE - 1))
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
db_go || true
|
|
||||||
|
|
||||||
db_stop
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
Package: ccm-bookmarks
|
|
||||||
Version: 6.3.0-4
|
|
||||||
Section: contrib/web
|
|
||||||
Priority: optional
|
|
||||||
Architecture: all
|
|
||||||
Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core
|
|
||||||
Installed-Size: 200
|
|
||||||
Maintainer: Runtime Packaging <runtime-packaging@runtime-collective.com>
|
|
||||||
Description: APLAWS: Bookmarks application.
|
|
||||||
.
|
|
||||||
FIXME: We need a longer and more meaningful description here.
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
175d53ddebcf2a94832e339aa0eb0033 usr/share/java/ccm-bookmarks-6.3.0.jar
|
|
||||||
be6015a972041a94c6228273ab905d65 usr/share/java/ccm-bookmarks-6.3.0-pdl.jar
|
|
||||||
81da5a742012ccfde811b1df431cc619 usr/share/java/ccm-bookmarks-6.3.0-sql.jar
|
|
||||||
5a94a7a41e53dcaf8424738361e7c0b1 usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks.xsl
|
|
||||||
4004101009d2064fd7ebad8633251ca1 usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks-portlet.xsl
|
|
||||||
5b9b7b56434607b3a1e75a5b9bab386d usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/__ccm__/apps/bookmarks/xsl/index.xsl
|
|
||||||
ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-bookmarks/copyright
|
|
||||||
42d1154453e3846025aeadd00c2954fd usr/share/doc/ccm-bookmarks/changelog.Debian.gz
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# postinst script for ccm-bookmarks
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postinst> `configure' <most-recently-configured-version>
|
|
||||||
# * <old-postinst> `abort-upgrade' <new version>
|
|
||||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
||||||
# <new-version>
|
|
||||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
||||||
# <failed-install-package> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
#
|
|
||||||
# quoting from the policy:
|
|
||||||
# Any necessary prompting should almost always be confined to the
|
|
||||||
# post-installation script, and should be protected with a conditional
|
|
||||||
# so that unnecessary prompting doesn't happen if a package's
|
|
||||||
# installation fails and the `postinst' is called with `abort-upgrade',
|
|
||||||
# `abort-remove' or `abort-deconfigure'.
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure|reconfigure)
|
|
||||||
# FIXME: we need to be sensitive to upgrade operations here.
|
|
||||||
# basically, if pkgversion = appversion, then the datamodel
|
|
||||||
# hasn't changed -- we just configure the package and don't
|
|
||||||
# touch the database; else, we need to also update the
|
|
||||||
# datamodel in the database.
|
|
||||||
|
|
||||||
|
|
||||||
### get the settings for the operations below
|
|
||||||
|
|
||||||
ccm_set_env
|
|
||||||
db_get_ccm_settings ;# db_stop
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
|
|
||||||
### do the usual post-installion configuration
|
|
||||||
|
|
||||||
if [ ! -d "/etc/ccm" ]; then
|
|
||||||
db_message "ccm/shared/error_etc_ccm_missing_dir"
|
|
||||||
mkdir -p "/etc/ccm"
|
|
||||||
fi
|
|
||||||
|
|
||||||
ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_file_attributes $ccm_package_name $ccm_package_version
|
|
||||||
|
|
||||||
|
|
||||||
### try to set up the database if asked to do so
|
|
||||||
|
|
||||||
if [ "$pg_set_up_database_p" = "true" ]; then
|
|
||||||
pg_set_up_database
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
### try to load the application if asked to do so
|
|
||||||
|
|
||||||
if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then
|
|
||||||
ccm_load
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
### run the hostinit step
|
|
||||||
|
|
||||||
if [ -n "$JAVA_HOME" ]; then
|
|
||||||
tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true
|
|
||||||
tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true
|
|
||||||
ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
### don't give others the registry details [eg the database password] on a golden plate
|
|
||||||
# FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership.
|
|
||||||
# chmod -R o-rwx /etc/ccm/conf/registry || true
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
abort-upgrade|abort-remove|abort-deconfigure)
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postinst called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
@ -1,68 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# postrm script for ccm-bookmarks
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
db_get_ccm_settings
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
if [ "$ccm_package_name" != "ccm-core" ]; then
|
|
||||||
exit 0 ;# nothing to do
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
purge-FIXME)
|
|
||||||
# FIXME: there are problems with this, so disabling for the moment.
|
|
||||||
|
|
||||||
# maybe drop the database
|
|
||||||
if [ "$dbase_host" = "localhost" ]; then
|
|
||||||
|
|
||||||
db_input high ccm/shared/pg_drop_database_at_purge_p || true
|
|
||||||
db_go
|
|
||||||
db_stop
|
|
||||||
|
|
||||||
if [ "$pg_drop_database_at_purge_p" = "true" ]; then
|
|
||||||
su - postgres -c "dropdb $dbase_name" 1>&2 || true
|
|
||||||
su - postgres -c "dropuser $dbase_user" 1>&2 || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# FIXME: should we still remove /etc/ccm/conf/registry/registry.properties,
|
|
||||||
# even if we don't or fail to drop the database.
|
|
||||||
rm -rf /etc/ccm/conf/registry/*
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
# Nothing to do here.
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
# Automatically added by dh_installdebconf
|
|
||||||
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
db_purge
|
|
||||||
fi
|
|
||||||
# End automatically added section
|
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
# prerm script for ccm-bookmarks
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
. /usr/share/debconf/confmodule
|
|
||||||
. /usr/share/ccm-tools/lib/shellmodule
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <prerm> `remove'
|
|
||||||
# * <old-prerm> `upgrade' <new-version>
|
|
||||||
# * <new-prerm> `failed-upgrade' <old-version>
|
|
||||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
|
||||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
|
||||||
# <package-being-installed> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
db_get_ccm_settings ; db_stop
|
|
||||||
|
|
||||||
get_pkgname_from_arg "$0"
|
|
||||||
ccm_package_name="$RET"
|
|
||||||
get_pkgversion_from_dpkg "$ccm_package_name"
|
|
||||||
ccm_package_version="$RET"
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|purge|upgrade|deconfigure)
|
|
||||||
|
|
||||||
ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version
|
|
||||||
ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version
|
|
||||||
;;
|
|
||||||
|
|
||||||
failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "prerm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then
|
|
||||||
invoke-rc.d ccm stop || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
@ -1,207 +0,0 @@
|
||||||
Template: ccm/debconf/version
|
|
||||||
Type: string
|
|
||||||
Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
Description: The version of the debconf template
|
|
||||||
Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
.
|
|
||||||
$Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
Template: ccm/package_name
|
|
||||||
Type: string
|
|
||||||
Default: ccm-bookmarks
|
|
||||||
Description: The name of the package
|
|
||||||
This is syntetic sugar.
|
|
||||||
|
|
||||||
Template: ccm/package_version
|
|
||||||
Type: string
|
|
||||||
Default: 6.3.0
|
|
||||||
Description: The version of the package
|
|
||||||
This is synthetic sugar.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_type
|
|
||||||
Type: select
|
|
||||||
Choices: postgresql
|
|
||||||
Default: postgresql
|
|
||||||
Description: Database backend:
|
|
||||||
Please choose a database backend. At the moment, you could only select PostgreSQL.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_host
|
|
||||||
Type: string
|
|
||||||
Default: localhost
|
|
||||||
Description: Database host:
|
|
||||||
Please specify the host that the database runs on.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_name
|
|
||||||
Type: string
|
|
||||||
Default: ccm01.db
|
|
||||||
Description: Database name:
|
|
||||||
Please specify the name of the APLAWS database.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_user
|
|
||||||
Type: string
|
|
||||||
Default: ccm
|
|
||||||
Description: Database user name:
|
|
||||||
Please specify the database account for the APLAWS database.
|
|
||||||
|
|
||||||
Template: ccm/shared/dbase_password
|
|
||||||
Type: password
|
|
||||||
Default: ccmpwd
|
|
||||||
Description: Database password:
|
|
||||||
Please choose a password for the APLAWS database account.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_runtime_jdbc_url
|
|
||||||
Type: string
|
|
||||||
Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd
|
|
||||||
Description: JDBC connection URL:
|
|
||||||
The WAF runtime uses this value to connect to a database.
|
|
||||||
.
|
|
||||||
Format: jdbc:[subprotocol]:[subname]
|
|
||||||
.
|
|
||||||
Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_web_server
|
|
||||||
Type: string
|
|
||||||
Default: localhost:9090
|
|
||||||
Description: Server virtual host:
|
|
||||||
Please specify the hostname and port that users of a site will
|
|
||||||
see in URLs generated by WAF.
|
|
||||||
.
|
|
||||||
Format: [server hostname]:[port number]
|
|
||||||
.
|
|
||||||
Example: example.com:80
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_email
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Email Address:
|
|
||||||
Please specify the system administrator account.
|
|
||||||
.
|
|
||||||
Format: <user>@<domain>
|
|
||||||
.
|
|
||||||
Example: joe@example.com
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_name_given
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator First Name:
|
|
||||||
Please specify the name of the system administrator.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_name_family
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Last Name:
|
|
||||||
Please specify the surname of the system administrator.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password
|
|
||||||
Type: password
|
|
||||||
Default:
|
|
||||||
Description: Administrator Password
|
|
||||||
Please choose a password for the system administrator account.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password_question
|
|
||||||
Type: string
|
|
||||||
Default: The name of your primary school
|
|
||||||
Description: Administrator Password Question:
|
|
||||||
This question will be asked when the password to the system administrator
|
|
||||||
account is lost and access must be recovered.
|
|
||||||
.
|
|
||||||
Please only use letters and numbers.
|
|
||||||
|
|
||||||
Template: ccm/shared/waf_admin_password_answer
|
|
||||||
Type: string
|
|
||||||
Default:
|
|
||||||
Description: Administrator Password Answer:
|
|
||||||
Now specify the correct answer to the Administrator Password Question.
|
|
||||||
.
|
|
||||||
Please only use letters and numbers.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_load_apps_at_install_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Load CCM applications as they install?
|
|
||||||
You could choose to load CCM applications into the database
|
|
||||||
automatically after they are installed, or you could load them
|
|
||||||
manually [with 'ccm load'] yourself.
|
|
||||||
.
|
|
||||||
The former will save you some manual work, while the latter is probably
|
|
||||||
most suited if you are trying to build the applications from the
|
|
||||||
sources and prefer to load them once all are built and installed.
|
|
||||||
|
|
||||||
Template: ccm/shared/pg_set_up_database_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Do you want me to set up the CCM database and adjust the access permissions?
|
|
||||||
You have specified a database on your localhost. I could set it up
|
|
||||||
for you and automatically adjust the access permissions. I could do
|
|
||||||
this independently of whether or not you have choosen to load the
|
|
||||||
applications at install time.
|
|
||||||
.
|
|
||||||
Say no here if you have already prepared the CCM database yourself
|
|
||||||
or if you would like to do it later. Saying yes will save you some
|
|
||||||
manual work.
|
|
||||||
|
|
||||||
Template: ccm/shared/pg_drop_database_at_purge_p
|
|
||||||
Type: boolean
|
|
||||||
Default: true
|
|
||||||
Description: Do you want me to drop the CCM database?
|
|
||||||
|
|
||||||
|
|
||||||
Template: ccm/shared/error_etc_ccm_missing_dir
|
|
||||||
Type: note
|
|
||||||
Description: CCM configuration directory does not exist.
|
|
||||||
I couldn't find the CCM configuration directory: /etc/ccm.
|
|
||||||
.
|
|
||||||
This probably points at a corrupt or unusual CCM installation. The ccm-tools
|
|
||||||
package creates this directory --- please verify that it is installed and
|
|
||||||
intact.
|
|
||||||
.
|
|
||||||
I will continue with the configuration by re-creating the directory,
|
|
||||||
but we may experience problems later.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_aux_setupdb_failed
|
|
||||||
Type: note
|
|
||||||
Description: ccm-aux-setupdb couldn't complete.
|
|
||||||
The helper script ccm-aux-setupdb didn't succeed.
|
|
||||||
This means that the CCM database couldn't be set up.
|
|
||||||
.
|
|
||||||
If you have answered yes to the automatic loading of
|
|
||||||
applications at install time, I will still try to honour
|
|
||||||
that.
|
|
||||||
.
|
|
||||||
In case that doesn't succeed [likely now], please manually
|
|
||||||
prepare the database and load the application(s) after the
|
|
||||||
installation.
|
|
||||||
|
|
||||||
Template: ccm/shared/ccm_aux_update_hba_conf_failed
|
|
||||||
Type: note
|
|
||||||
Description: ccm-aux-update-hba-conf couldn't complete.
|
|
||||||
The helper script ccm-aux-update-hba-conf didn't succeed.
|
|
||||||
This means that the access permissions for the ccm database
|
|
||||||
couldn't be set up.
|
|
||||||
.
|
|
||||||
If you have answered yes to the automatic loading of
|
|
||||||
applications at install time, I will still try to honour
|
|
||||||
that.
|
|
||||||
.
|
|
||||||
In case that doesn't succeed [likely now], please manually
|
|
||||||
check/edit the pg_hba.conf file of your PostgreSQL instance
|
|
||||||
and load the application(s) after the installation.
|
|
||||||
|
|
||||||
Template: ccm/shared/error_ccm_tool_not_found
|
|
||||||
Type: note
|
|
||||||
Description: The 'ccm' tool not found.
|
|
||||||
I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it.
|
|
||||||
.
|
|
||||||
This probably points at a corrupt or unusual CCM installation. The ccm-tools
|
|
||||||
package contains this file --- please check your setup after the installation,
|
|
||||||
and then run "dpkg-reconfigure ccm-bookmarks".
|
|
||||||
|
|
||||||
Template: ccm/shared/error_java_home_not_found
|
|
||||||
Type: note
|
|
||||||
Description: JAVA_HOME not found.
|
|
||||||
JAVA_HOME isn't set --- I have even tried to guess it but failed.
|
|
||||||
.
|
|
||||||
This will cancel any 'ccm load' and 'ccm hostinit' operations.
|
|
||||||
.
|
|
||||||
Please check your java setup after the installation, and then run
|
|
||||||
"dpkg-reconfigure ccm-bookmarks".
|
|
||||||
Binary file not shown.
|
|
@ -1,15 +0,0 @@
|
||||||
This package was debianized by Berkan Eskikaya <berkan@runtime-collective.com> on
|
|
||||||
Tue, 13 Apr 2004 19:03:14 +0100.
|
|
||||||
|
|
||||||
It was downloaded from http://aplaws.sourceforge.net/
|
|
||||||
|
|
||||||
Upstream Authors: Redhat UK.
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
|
|
||||||
You are free to distribute this software under the terms of
|
|
||||||
the GNU General Public License.
|
|
||||||
On Debian systems, the complete text of the GNU General Public
|
|
||||||
License can be found in the file `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
# for eg Oracle jar
|
|
||||||
CLASSPATH=./lib/:$CLASSPATH
|
|
||||||
$ANT build-${name}
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
[ -f build.xml ] && $ANT clean-${appname}
|
|
||||||
|
|
||||||
rm -rf build build.xml ccm.classpath
|
|
||||||
|
|
||||||
# ccm-disperse.sh creates the .install files automatically, so let's clean them too.
|
|
||||||
|
|
||||||
rm -f ${appname}.install ${appname}-doc.install
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
if [ ! -L $name ]; then
|
|
||||||
ln -s . $name
|
|
||||||
fi
|
|
||||||
ccm-create-projectxml.pl > project.xml
|
|
||||||
ccm-configure.sh
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Author: Berkan Eskikaya <berkan@runtime-collective.com>, 2004
|
|
||||||
#
|
|
||||||
# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $
|
|
||||||
|
|
||||||
. debian/ccm-settings.sh
|
|
||||||
|
|
||||||
SRCDIR="$1"
|
|
||||||
[ "x$SRCDIR" != "x" ] || exit 1
|
|
||||||
|
|
||||||
# automatically generate the .install file lists for dh_install:
|
|
||||||
|
|
||||||
(cd $SRCDIR && find . -type f \
|
|
||||||
| grep -v DEBIAN \
|
|
||||||
| grep -v var/www/html \
|
|
||||||
| sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install
|
|
||||||
|
|
||||||
(cd $SRCDIR && find . -type f -path './var/www/html/*' \
|
|
||||||
| sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install
|
|
||||||
|
|
||||||
# for some reason, dh_install doesn't work properly; let's disperse the files ourselves:
|
|
||||||
|
|
||||||
for pkg in ${name} ${name}-doc; do
|
|
||||||
# skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES
|
|
||||||
[ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true
|
|
||||||
|
|
||||||
# this should exist [due to dh_installdocs, dh_installchangelog], but just in case...
|
|
||||||
mkdir -p debian/$pkg
|
|
||||||
|
|
||||||
[ -e debian/${pkg}.install ] && \
|
|
||||||
echo -n "Dispersing files to debian/$pkg/ ... " && \
|
|
||||||
for file in `cat debian/${pkg}.install`; do
|
|
||||||
dir=`dirname $file`
|
|
||||||
mkdir -p debian/$pkg/$dir
|
|
||||||
cp $SRCDIR/$file debian/$pkg/$dir/
|
|
||||||
done
|
|
||||||
echo "done."
|
|
||||||
done
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue