Adding to repository original Timeplot-1.0_2
FEA: ItEr74S05PrintingSupportItEr73S05
4
zk-Timeplot-1.0_2/LICENSE.txt
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
ZK.forge is distributed under Lesser GPL Version 2.1 in the hope that
|
||||
it will be useful, but WITHOUT ANY WARRANTY.
|
||||
|
||||
See also http://www.gnu.org/licenses/lgpl.html
|
||||
82
zk-Timeplot-1.0_2/bin/deploy
Executable file
|
|
@ -0,0 +1,82 @@
|
|||
#!/bin/bash
|
||||
# deploy
|
||||
#
|
||||
#{{IS_NOTE
|
||||
# Purpose:
|
||||
# Deploy
|
||||
# Description:
|
||||
# It supports tomcat only.
|
||||
# History:
|
||||
# Thu Jan 26 09:47:39 2006, Created by tomyeh
|
||||
#}}IS_NOTE
|
||||
#
|
||||
#Copyright (C) 2006 Potix Corporation. All Rights Reserved.
|
||||
#
|
||||
#{{IS_RIGHT
|
||||
# This program is distributed under Lesser GPL Version 2.1 in the hope that
|
||||
# it will be useful, but WITHOUT ANY WARRANTY.
|
||||
#}}IS_RIGHT
|
||||
#
|
||||
if [ ! -d /usr/tomcat ] ; then
|
||||
echo "/usr/tomcat not found"
|
||||
echo "Currently only tomcat is supported"
|
||||
exit 1
|
||||
fi
|
||||
if [ $# == 0 ] ; then
|
||||
echo "Usage:"
|
||||
echo " deploy prj1 prj2..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
jar_found=false
|
||||
for f in $*; do
|
||||
f=${f%/}
|
||||
if [ -f dist/lib/$f.war ] || [ "$(head -1 $f/format)" = "war" ] ; then
|
||||
dst=$(grep '^root' $f/deploy)
|
||||
if [ "$dst" = "root" ] ; then
|
||||
dst=ROOT
|
||||
else
|
||||
dst=$f
|
||||
fi
|
||||
echo "cp dist/lib/$f /usr/tomcat/webapps/$dst"
|
||||
|
||||
function cpweb
|
||||
{
|
||||
(
|
||||
cd $1
|
||||
for sub in * ; do
|
||||
if [ -f "$sub" ] ; then
|
||||
#echo cp -u -p "$sub" $2
|
||||
cp -u -p -v "$sub" $2
|
||||
elif [ "$sub" != CVS ] && [ -d "$sub" ] ; then
|
||||
local dstsub=$2/$sub
|
||||
if [ ! -d "$dstsub" ] ; then
|
||||
mkdir -p "$dstsub"
|
||||
fi
|
||||
#echo cpweb $(pwd)/$sub $dstsub
|
||||
cpweb $sub $dstsub
|
||||
fi
|
||||
done
|
||||
)
|
||||
}
|
||||
cpweb $f/src/archive /usr/tomcat/webapps/$dst
|
||||
fi
|
||||
|
||||
if [ -f dist/lib/$f.jar ] ; then
|
||||
jar_found=true
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$jar_found" = "true" ] ; then
|
||||
net stop "Apache Tomcat"
|
||||
|
||||
for f in $*; do
|
||||
f=${f%/}
|
||||
if [ -f dist/lib/$f.jar ] ; then
|
||||
#echo "cp dist/lib/$f.jar /usr/tomcat/shared/lib"
|
||||
cp -p -u -v -f dist/lib/$f.jar /usr/tomcat/shared/lib
|
||||
fi
|
||||
done
|
||||
|
||||
net start "Apache Tomcat"
|
||||
fi
|
||||
94
zk-Timeplot-1.0_2/bin/deploy.unzip.war
Executable file
|
|
@ -0,0 +1,94 @@
|
|||
#!/bin/bash
|
||||
# deploy.unzip
|
||||
#
|
||||
#{{IS_NOTE
|
||||
# Purpose:
|
||||
# Unzip and deploy a war into Tomcat or Jetty server
|
||||
# For deploy ear, use deploy.unzip
|
||||
# Description:
|
||||
# Unzip and deploy a war
|
||||
# History:
|
||||
# Wed Jan 3 12:33:46 2006, Created by tomyeh
|
||||
#}}IS_NOTE
|
||||
#
|
||||
#Copyright (C) 2006 Potix Corporation. All Rights Reserved.
|
||||
#
|
||||
#{{IS_RIGHT
|
||||
# This program is distributed under Lesser GPL Version 2.1 in the hope that
|
||||
# it will be useful, but WITHOUT ANY WARRANTY.
|
||||
#}}IS_RIGHT
|
||||
#
|
||||
|
||||
function helpit
|
||||
{
|
||||
echo "deploy.unzip - Unzip and deploy a war into Tomcat or jetty server"
|
||||
echo "Copyright (C) 2006 Potix Corporation. All Rights Reserved."
|
||||
echo
|
||||
echo "Usage:"
|
||||
echo " deploy.unzip srcdir dstdir [list] [old_name/new_name]"
|
||||
echo
|
||||
echo "srcdir - the directory containing source files"
|
||||
echo "dstdir - the destination directory"
|
||||
echo "list - a list of comma separated source files"
|
||||
echo "old_name/new_name - rename the war's name from old_name to new_name"
|
||||
exit 0
|
||||
}
|
||||
|
||||
if [ $# -lt 2 ] ; then
|
||||
echo "You have to specify at least the source file and destination directory"
|
||||
exit 1
|
||||
fi
|
||||
if [ $1 = --help ] ; then
|
||||
helpit
|
||||
fi
|
||||
srcdir=$1
|
||||
dstdir=$2
|
||||
fls=$3
|
||||
renwar=$4
|
||||
if [ ! -d "$srcdir" ] ; then
|
||||
echo "$srcdir is not a directory"
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -d "$dstdir" ] ; then
|
||||
echo "$dstdir doesn't exist. Make sure /usr/tomcat is linked to the Tomcat directory"
|
||||
exit 1
|
||||
fi
|
||||
if [ "$fls" == "" ] ; then
|
||||
exit 0
|
||||
fi
|
||||
oldnm="${renwar%/*}"
|
||||
newnm="${renwar#*/}"
|
||||
|
||||
if [ "$srcdir" == "${srcdir#/}" ] ; then #relative
|
||||
srcdir=$(pwd)/$srcdir
|
||||
fi
|
||||
|
||||
oldIFS=$IFS
|
||||
IFS=,
|
||||
for f in $fls; do
|
||||
if [ -f "$srcdir/$f" ] ; then
|
||||
dstfn=${f%%.*}
|
||||
if [ "$dstfn" = "$oldnm" ] ; then
|
||||
dstfn="$newnm"
|
||||
fi
|
||||
srcfl=$srcdir/$f
|
||||
if [ ! -f "$dstdir/$dstfn/WEB-INF/web.xml" ] || [ "$srcfl" -nt "$dstdir/$dstfn/WEB-INF/web.xml" ] ; then
|
||||
echo "Unzip $srcfl to $dstfn"
|
||||
(
|
||||
mkdir -p "$dstdir/$dstfn"
|
||||
cd "$dstdir/$dstfn"
|
||||
|
||||
#convert srcfl to window format
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
srcfl=$(cygpath -wa $srcfl)
|
||||
fi
|
||||
jar xf "$srcfl"
|
||||
)
|
||||
else
|
||||
echo "Skip $srcdir/$f because it is not newer"
|
||||
fi
|
||||
else
|
||||
echo "Ignore: $srcdir/$f not found"
|
||||
fi
|
||||
done
|
||||
IFS=$oldIFS
|
||||
146
zk-Timeplot-1.0_2/bin/genprop
Executable file
|
|
@ -0,0 +1,146 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
#{{IS_NOTE
|
||||
#
|
||||
# Authors: Tom M. Yeh
|
||||
# Contributors:
|
||||
# Create Date: 2001/3/30 05:46PM
|
||||
# Purpose: Generate Java classes from properties files
|
||||
# Description:
|
||||
# Execute 'genprop -h' to know how to use.
|
||||
# History:
|
||||
# 5/19/2001 Tom M. Yeh, allow to processing non-utf files and specify
|
||||
# different paths
|
||||
#
|
||||
#}}IS_NOTE
|
||||
#
|
||||
# Copyright (C) 2001 Potix Corporation. All Rights Reserved.
|
||||
#
|
||||
#{{IS_RIGHT
|
||||
# This program is distributed under Lesser GPL Version 2.1 in the hope that
|
||||
# it will be useful, but WITHOUT ANY WARRANTY.
|
||||
#}}IS_RIGHT
|
||||
#
|
||||
|
||||
function showhelp
|
||||
{
|
||||
echo "genprop - generate Java classes from properties files"
|
||||
echo "Copyright (C) 2001 Potix Corporation. All Rights Reserved."
|
||||
echo
|
||||
echo "Usage:"
|
||||
echo " genprop [-f] [-h] [-u] prop_dir dst_dir"
|
||||
echo
|
||||
echo "prop_dir"
|
||||
echo " The directory holds the properties files, *.properties."
|
||||
echo " If -u is specified, *.properties.utf are expected."
|
||||
echo "dst_dir"
|
||||
echo " The destination directory, where the generated java codes"
|
||||
echo " are stored."
|
||||
echo
|
||||
echo "Example:"
|
||||
echo " genpro src/conf codegen"
|
||||
echo
|
||||
echo "Options:"
|
||||
echo " -f"
|
||||
echo " Force the generation without checking whether it is newer."
|
||||
echo " -u"
|
||||
echo " UTF files (with .utf extension) expected."
|
||||
echo " -x"
|
||||
echo " Exclude filename that contains '_'."
|
||||
echo " -h or --help"
|
||||
echo " Show this message."
|
||||
echo
|
||||
echo "Format of the properties.utf file:"
|
||||
echo "#@=TypeName"
|
||||
echo " and all constants are added with the type name, e.g, MT_SYS."
|
||||
echo " It must be at the first line."
|
||||
echo
|
||||
echo "#-=M_FILE_NOT_FOUND"
|
||||
echo "1002=File Not Found"
|
||||
echo " Other part is composed as pair of lines. The first line of"
|
||||
echo " each pair specifies the constant name (at second column)"
|
||||
echo " The second line of each pair specifies the value (1002 in"
|
||||
echo " the above example). Notice: hexadecimal is assumed, only"
|
||||
echo " lower-case with four digits is allowed, and starts at 1000."
|
||||
echo
|
||||
echo " *
|
||||
echo " * You have to maintain org.zkoss.mesg.MessageConst.java"
|
||||
echo " consistently, if you add a new properties file."
|
||||
echo " * Lines starting with # or being empty are ignored."
|
||||
}
|
||||
|
||||
#-- check options
|
||||
if [ "$1" = "--help" ] ; then
|
||||
showhelp
|
||||
exit 0
|
||||
fi
|
||||
|
||||
awkpath=$0
|
||||
force=0
|
||||
flext=.properties
|
||||
exclude=N.O.E.X.I.S.T
|
||||
|
||||
while getopts "fhux" opt; do
|
||||
case $opt in
|
||||
h ) showhelp
|
||||
exit 0;;
|
||||
f ) force=1;;
|
||||
u ) flext=.properties.utf;;
|
||||
x ) exclude=_;;
|
||||
\? ) echo "Try 'genprop --help' for more information"
|
||||
exit 1;;
|
||||
esac
|
||||
done
|
||||
shift $(($OPTIND - 1))
|
||||
|
||||
if [ $# != 2 ] ; then
|
||||
echo "genprop: wrong number of arguments"
|
||||
echo "Try 'genprop --help' for more information"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cnfpath=$1
|
||||
codegendir=$2
|
||||
|
||||
#-- check directory structure
|
||||
if [ ! -d $cnfpath ] ; then
|
||||
echo "Error: $cnfpath is not a directory" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#-- start process
|
||||
for fn in $cnfpath/*$flext ; do
|
||||
if [ \( -f "$fn" \) -a \( "${fn#*$exclude}" = "$fn" \) ] ; then
|
||||
msgnm=${fn##$cnfpath/}
|
||||
msgnm=${msgnm%$flext}
|
||||
|
||||
clsnm=$(head -1 $fn)
|
||||
clsnm=${clsnm###class=}
|
||||
pkgnm=${clsnm%.*}
|
||||
clsnm=${clsnm##*.}
|
||||
|
||||
if [ "$clsnm" = "" ] || [ "$pkgnm" == "" ] ; then
|
||||
echo The first line of $fn must be "#class=package.class"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
pkgpath=${codegendir}/${pkgnm//.//}
|
||||
dstfn=${pkgpath}/${clsnm}.java
|
||||
|
||||
#update if newer
|
||||
if [ \( force = 1 \) -o \( ! -f "$dstfn" \) -o \( "$fn" -nt "$dstfn" \) ] ; then
|
||||
echo "Generating $dstfn..."
|
||||
|
||||
if [ "$awkfn" = "" ] ; then
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
awkpath=$(cygpath -u $awkpath)
|
||||
fi
|
||||
awkfn=${awkpath%/*}/genprop.awk
|
||||
fi
|
||||
|
||||
mkdir -p $pkgpath
|
||||
args="-f $awkfn -v pkgnm=$pkgnm -v clsnm=$clsnm -vmsgnm=$msgnm -vusernm=$USER"
|
||||
awk $args -v "when=$(date)" "$fn" > "$dstfn"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
31
zk-Timeplot-1.0_2/bin/genprop.awk
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
BEGIN {
|
||||
FS = " *= *"
|
||||
printf "// %s.%s.java\n", pkgnm, clsnm
|
||||
printf "//\n"
|
||||
printf "// Generated by genprop\n"
|
||||
printf "// DO NOT MODIFY IT MANUALLY. All modifications will be lost.\n"
|
||||
printf "//\n"
|
||||
printf "// %s, %s\n", usernm, when
|
||||
printf "// Copyright(C) 2001 Potix Corporation. All Rights Reserved.\n\n"
|
||||
printf "package %s;\n", pkgnm
|
||||
printf "\npublic interface %s extends org.zkoss.mesg.MessageConst {\n", clsnm
|
||||
printf "\tstatic final int MESSAGE_ID = Aide.register(%s.class, \"%s\");\n", clsnm, msgnm
|
||||
key = ""
|
||||
}
|
||||
|
||||
END {
|
||||
printf "}\n"
|
||||
}
|
||||
|
||||
$1=="#-" {
|
||||
key = $2
|
||||
}
|
||||
|
||||
key!="" && NF>=2 && /^[1-9a-f]/ {
|
||||
printf "\tstatic final int %s = 0x%s + MESSAGE_ID;\n", key, $1
|
||||
key = ""
|
||||
}
|
||||
|
||||
/^0/ {
|
||||
printf "error: the hexadecimal (%s) must starts at 1000 and in lower case", $1
|
||||
}
|
||||
108
zk-Timeplot-1.0_2/bin/zipjs
Executable file
|
|
@ -0,0 +1,108 @@
|
|||
#!/bin/bash
|
||||
# zipjs
|
||||
#
|
||||
#{{IS_NOTE
|
||||
# Purpose:
|
||||
# Copy and compress Javascript
|
||||
# Description:
|
||||
#
|
||||
# History:
|
||||
# Thu Jan 26 14:17:26 2006, Created by tomyeh
|
||||
#}}IS_NOTE
|
||||
#
|
||||
#Copyright (C) 2006 Potix Corporation. All Rights Reserved.
|
||||
#
|
||||
#{{IS_RIGHT
|
||||
# This program is distributed under GPL Version 2.0 in the hope that
|
||||
# it will be useful, but WITHOUT ANY WARRANTY.
|
||||
#}}IS_RIGHT
|
||||
#
|
||||
if [ $# != 3 ] ; then
|
||||
echo "Usage:"
|
||||
echo " zipjs jarfl srcdir dstdir"
|
||||
echo
|
||||
echo "All files are copied from one directory to another."
|
||||
echo "The JavaScript files are compressed during copying."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d "$2" ] ; then #nothing to copy
|
||||
exit 0
|
||||
fi
|
||||
|
||||
jarfl="$1"
|
||||
if [ "${jarfl#/}" = "$jarfl" ] ; then
|
||||
jarfl="$(pwd)/$jarfl"
|
||||
fi
|
||||
dstdir="$3"
|
||||
if [ "${dstdir#/}" = "$dstdir" ] ; then
|
||||
dstdir="$(pwd)/$dstdir"
|
||||
fi
|
||||
|
||||
if [ ! -f "$jarfl" ] ; then
|
||||
echo "$jarfl not found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#convert jarfl to window format
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
jarfl=$(cygpath -wa $jarfl)
|
||||
fi
|
||||
|
||||
failed=false
|
||||
|
||||
function zips
|
||||
{
|
||||
local dst="$1"
|
||||
local parent=$2
|
||||
for f in *; do
|
||||
if [ "$f" != "CVS" ] ; then
|
||||
dstfl=$dst/$f
|
||||
if [ -d "$f" ] ; then
|
||||
(
|
||||
cd "$f"
|
||||
zips "$dstfl" "$f"
|
||||
)
|
||||
elif [ -f "$f" ] ; then
|
||||
mkdir -p "$dst"
|
||||
|
||||
if [ ! -f "$dstfl" ] || [ "$f" -nt "$dstfl" ] ; then
|
||||
local cvt=false
|
||||
if [ "${f%.js}" != "$f" ] ; then
|
||||
cvt=true
|
||||
fi
|
||||
if [ $cvt = true ] ; then
|
||||
echo Compress $f
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
dstfl=$(cygpath -wa $dstfl)
|
||||
fi
|
||||
java -jar $jarfl --charset UTF-8 "$f" -o "$dstfl" 2>&1
|
||||
if [ $? != 0 ] ; then
|
||||
echo "Warning failed to compress, use copy instead: $f"
|
||||
cvt=false
|
||||
else
|
||||
cp -p ./"$f" $dst/${f%.js}.org.js
|
||||
#always make a copy so we can use them if we want to debug them
|
||||
fi
|
||||
fi
|
||||
if [ $cvt = false ] ; then
|
||||
echo copy $f
|
||||
cp -p ./"$f" $dst
|
||||
#$f might starts with -
|
||||
if [ $? != 0 ] ; then
|
||||
echo "Failed:"
|
||||
echo " cp -p $f $dst"
|
||||
failed=true
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
cd ..
|
||||
}
|
||||
cd $2
|
||||
zips "$dstdir"
|
||||
if [ $failed = true ] ; then
|
||||
exit 1
|
||||
fi
|
||||
471
zk-Timeplot-1.0_2/build
Executable file
|
|
@ -0,0 +1,471 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
#{{IS_NOTE
|
||||
# Purpose:
|
||||
# To build java projects
|
||||
# Description:
|
||||
# 'build help' for more descriptions
|
||||
# History:
|
||||
# March 29 15:11 2001, Created by tomyeh
|
||||
# August 21 13:59 2002, Rewritten by tomyeh
|
||||
#}}IS_NOTE
|
||||
#
|
||||
#Copyright (C) 2002 Potix Corporation. All Rights Reserved.
|
||||
#
|
||||
#{{IS_RIGHT
|
||||
# This program is distributed under GPL Version 2.0 in the hope that
|
||||
# it will be useful, but WITHOUT ANY WARRANTY.
|
||||
#}}IS_RIGHT
|
||||
#
|
||||
|
||||
#-- precondition check
|
||||
setting=build.setting.local
|
||||
if [ ! -f $setting ] ; then
|
||||
setting=build.setting
|
||||
if [ ! -f $setting ] ; then
|
||||
echo $setting must be specified. Refer to $setting.sample.
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
#-- help, verbose or continue
|
||||
if [ "$1" = "help" ] ; then
|
||||
more build.txt
|
||||
exit 0
|
||||
fi
|
||||
#nojc is obsolete
|
||||
#if [ "$1" = "nojc" ] ; then
|
||||
# shift
|
||||
# nojc="-Dnojc=true"
|
||||
#else
|
||||
# nojc="-Dnojc=false"
|
||||
#fi
|
||||
if [ "$1" = "verbose" ] ; then
|
||||
shift
|
||||
verbose="-verbose -Dverbose.required=true"
|
||||
fi
|
||||
if [ "$1" = "continue" ] ; then
|
||||
shift
|
||||
haltonerror=off
|
||||
else
|
||||
haltonerror=on
|
||||
fi
|
||||
if [ "$1" = "unzip" ] ; then
|
||||
shift
|
||||
unzip=true
|
||||
else
|
||||
unzip=$(grep '^unzip=' $setting)
|
||||
unzip=${unzip#unzip=}
|
||||
if [ "$unzip" = "false" ] ; then
|
||||
unzip=
|
||||
fi
|
||||
fi
|
||||
|
||||
jboss_profile=$(grep '^jboss.deploy' $setting)
|
||||
jboss_profile=${jboss_profile#jboss.deploy=}
|
||||
if [ "$jboss_profile" != "" ] ; then
|
||||
jboss_ear=${jboss_profile#*/}
|
||||
if [ "$jboss_ear" = "" ] ; then
|
||||
echo "Illegal jboss.deploy: $jboss_profile. It must be xxx/yyy."
|
||||
fi
|
||||
jboss_profile=${jboss_profile%/*}
|
||||
fi
|
||||
jboss_home=/usr/jboss
|
||||
tomcat_home="$CATALINA_HOME"
|
||||
if [ ! -d "$tomcat_home" ]; then
|
||||
tomcat_home=/usr/tomcat
|
||||
fi
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
jboss_home=$(cygpath -w $jboss_home)
|
||||
jboss_home=${jboss_home%\\}
|
||||
tomcat_home=$(cygpath -w $tomcat_home)
|
||||
tomcat_home=${tomcat_home%\\}
|
||||
fi
|
||||
|
||||
start_service=$(grep '^start.service' $setting)
|
||||
start_service=${start_service#start.service=}
|
||||
|
||||
#-- parsing dbglfag
|
||||
dbgflag=$(grep '^D.ON' $setting)
|
||||
dbgflag=${dbgflag#D.ON=}
|
||||
if [ "$dbgflag" = "true" ] ; then
|
||||
cmd=build.debug
|
||||
jstrim=false
|
||||
elif [ "$dbgflag" = "false" ] ; then
|
||||
cmd=build.release
|
||||
jstrim=true
|
||||
else
|
||||
echo D.ON in $setting must be either true or false -- not $dbgflag
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#-- parsing cmd
|
||||
cmdList=" bd br cd cr ud ur doc jsrc build.debug build.release clean clean.debug clean.release utest.debug utest.release javadoc help"
|
||||
if [ \( $# != 0 \) -a \( "${cmdList#* $1 }" != "$cmdList" \) ] ; then
|
||||
cmd=$1
|
||||
shift
|
||||
fi
|
||||
|
||||
case $cmd in
|
||||
bd) cmd=build.debug ;;
|
||||
br) cmd=build.release ;;
|
||||
cd) cmd=clean.debug ;;
|
||||
cr) cmd=clean.release ;;
|
||||
ud) cmd=utest.debug ;;
|
||||
ur) cmd=utest.release ;;
|
||||
doc) cmd=javadoc ;;
|
||||
esac
|
||||
|
||||
outdir=${cmd#*\.}
|
||||
cmd=${cmd%\.*}
|
||||
if [ "$outdir" = "$cmd" ] ; then
|
||||
if [ "$dbgflag" = "true" ] ; then
|
||||
outdir=debug
|
||||
else
|
||||
outdir=release
|
||||
fi
|
||||
fi
|
||||
|
||||
#-- adjust javac debug and optimize flags
|
||||
dflag=$(grep '^debug=' $setting)
|
||||
dflag=${dflag#debug=}
|
||||
if [ "$dflag" = "true" ] ; then
|
||||
dflag=on
|
||||
elif [ "$dflag" = "false" ] ; then
|
||||
dflag=off
|
||||
elif [ "$dflag" != "" ] ; then
|
||||
echo Illegal setting: debug=$dflag
|
||||
exit 1
|
||||
fi
|
||||
|
||||
oflag=$(grep '^optimize=' $setting)
|
||||
oflag=${oflag#optimize=}
|
||||
if [ "$oflag" = "true" ] ; then
|
||||
oflag=on
|
||||
elif [ "$oflag" = "false" ] ; then
|
||||
oflag=off
|
||||
elif [ "$oflag" != "" ] ; then
|
||||
echo Illegal setting: optimize=$oflag
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$outdir" = "release" ] ; then
|
||||
if [ "$dflag" = "" ] ; then
|
||||
dflag="off"
|
||||
fi
|
||||
if [ "$oflag" = "" ] ; then
|
||||
oflag="on"
|
||||
fi
|
||||
else
|
||||
if [ "$dflag" = "" ] ; then
|
||||
dflag="on"
|
||||
fi
|
||||
if [ "$oflag" = "" ] ; then
|
||||
oflag="off"
|
||||
fi
|
||||
fi
|
||||
echo "dflag=$dflag, oflag=$oflag"
|
||||
|
||||
#-- Prepare define list
|
||||
dfnList=
|
||||
if [ $# != 0 ] ; then
|
||||
while [ "$1" != "${1#*=}" ] ; do
|
||||
dfnList="$dfnList -D$1"
|
||||
shift
|
||||
done
|
||||
fi
|
||||
|
||||
#-- Prepare $targetList
|
||||
#Add a project to the target list (the redudant ones won't be added)
|
||||
if [ $# != 0 ] ; then
|
||||
for target in $* ; do
|
||||
target=${target%/}
|
||||
targetListOld="$targetListOld $target"
|
||||
if [ \( ! -d $target \) -a \( ! -d ${target}Test \) ] ; then
|
||||
echo "Error: $target doesn't exist"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
else
|
||||
if [ ! -f build.projects ] ; then
|
||||
echo build.projects not found
|
||||
exit 1
|
||||
fi
|
||||
targetListOld="$(cat build.projects | tr '\n' ' ')"
|
||||
targetListOld="${targetListOld% }"
|
||||
doall="-Ddo.all=true"
|
||||
#denote all projects are built; passed to build.xml
|
||||
fi
|
||||
|
||||
function addToTargetList
|
||||
{
|
||||
if [ \( "${targetList#* $1 }" = "${targetList}" \) -a \
|
||||
\( "${targetList% $1}" = "${targetList}" \) -a \
|
||||
\( "${targetList#$1 }" = "${targetList}" \) ] ; then
|
||||
targetList="$targetList $1"
|
||||
|
||||
#check wether the project is defined correctly
|
||||
mustList="format"
|
||||
if [ -d $target ] ; then
|
||||
for v in $mustList ; do
|
||||
if [ ! -f $target/$v ] ; then
|
||||
echo "Error: $target/$v doesn't exist"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
targetList=
|
||||
if [ "${cmd#utest}" != "$cmd" ] ; then #utest
|
||||
for target in $targetListOld ; do
|
||||
if [ "${target%Test}" = "$target" ] ; then
|
||||
target=${target}Test
|
||||
fi
|
||||
addToTargetList $target
|
||||
done
|
||||
else
|
||||
for target in $targetListOld ; do
|
||||
addToTargetList $target
|
||||
done
|
||||
fi
|
||||
|
||||
#-- prepare javadocdir ...
|
||||
if [ "$cmd" = "javadoc" ] ; then
|
||||
javadocdir=$(grep '^javadoc' $setting)
|
||||
javadocdir=${javadocdir#javadoc=}
|
||||
if [ "$javadocdir" = "" ] ; then
|
||||
echo javadoc must be specified in $setting
|
||||
exit 1
|
||||
fi
|
||||
javadocdir=${javadocdir/\~/$HOME}
|
||||
else
|
||||
javadocdir=nonexist
|
||||
fi
|
||||
|
||||
#-- subroutine safe_cygpath
|
||||
#$1: cygpath option
|
||||
#$2: path
|
||||
#split path to chunks of $size size and do cygpath
|
||||
#this is a work around for the cygpath bug which cannot handle too long a path
|
||||
function safe_cygpath
|
||||
{
|
||||
local path=$2
|
||||
local size=400
|
||||
local newpath=
|
||||
while [ ${#path} -gt $size ] ; do
|
||||
path1=${path:0:$size}
|
||||
path1=${path1%:*}
|
||||
offset=$((${#path1}+1))
|
||||
newpath="$newpath;$(cygpath $1 $path1)"
|
||||
path=${path:$offset}
|
||||
done
|
||||
if [ ${#path} -gt 0 ] ; then
|
||||
newpath="$newpath;$(cygpath $1 $path)"
|
||||
fi
|
||||
newpath=${newpath#;}
|
||||
echo ${newpath%;}
|
||||
}
|
||||
|
||||
#-- subroutine invoke_ant
|
||||
#$1: cmd
|
||||
#$2: target
|
||||
function invoke_ant
|
||||
{
|
||||
echo "$1.$outdir $2..."
|
||||
cd $2
|
||||
|
||||
#handle class.test.local
|
||||
local class_test=
|
||||
if [ "${cmd#utest}" != "$cmd" ] ; then #utest
|
||||
if [ -f class.test.local ] ; then
|
||||
ctOrg=$(cat class.test.local | tr '\n' ' ')
|
||||
class_test=
|
||||
for cls in $ctOrg ; do
|
||||
if [ "${cls#\#}" = "$cls" ] ; then
|
||||
fl=$(echo $cls | tr '.' '/').java
|
||||
if [ "$class_test" = "" ] ; then
|
||||
class_test="-Dclass.test=$fl"
|
||||
else
|
||||
class_test="$class_test,$fl"
|
||||
#Don't use whitespace
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
fi
|
||||
|
||||
local CP=
|
||||
if [ -f classpath ] ; then
|
||||
#retrieve path
|
||||
CP=$(cat classpath | tr '\n' ':')
|
||||
CP=${CP%:}
|
||||
|
||||
#javadoc.class.path shall not contain '.', because xdoclet will
|
||||
#ignore files that are found in classpath
|
||||
DCP=$(echo $CP | sed -e 's/:\.:/:/g' -e 's/^\.://' -e 's/:\.$//')
|
||||
if [ "$TERM" = "cygwin" ] ; then
|
||||
DCP=$(safe_cygpath "-mp" "$DCP")
|
||||
#Don't convert CP because it is used by bash directly
|
||||
fi
|
||||
fi
|
||||
if [ "$verbose" != "" ] ; then
|
||||
echo "CP: $CP"
|
||||
echo "DCP: $DCP"
|
||||
fi
|
||||
|
||||
local war_libs=
|
||||
if [ -f war.libs ] ; then
|
||||
war_libs=$(cat war.libs | tr '\n' ',')
|
||||
war_libs=${war_libs%,}
|
||||
fi
|
||||
if [ "$war_libs" = "" ] ; then
|
||||
war_libs=nonexist
|
||||
fi
|
||||
|
||||
local server_libs=
|
||||
if [ -f server.libs ] ; then
|
||||
server_libs=$(cat server.libs | tr '\n' ',')
|
||||
server_libs=${server_libs%,}
|
||||
fi
|
||||
if [ "$server_libs" = "" ] ; then
|
||||
server_libs="nonexist"
|
||||
fi
|
||||
|
||||
local ear_libs=
|
||||
if [ -f ear.libs ] ; then
|
||||
ear_libs=$(cat ear.libs | tr '\n' ',')
|
||||
ear_libs=${ear_libs%,}
|
||||
fi
|
||||
if [ "$ear_libs" = "" ] ; then
|
||||
ear_libs=nonexist
|
||||
fi
|
||||
|
||||
local import_libs=
|
||||
if [ -f import.libs ] ; then
|
||||
import_libs=$(cat import.libs | tr '\n' ',')
|
||||
import_libs=${import_libs%,}
|
||||
fi
|
||||
if [ "$import_libs" = "" ] ; then
|
||||
import_libs=nonexist
|
||||
fi
|
||||
|
||||
local deploy=
|
||||
local unziplist=
|
||||
if [ -f deploy ] ; then
|
||||
deploy=$(head -1 deploy)
|
||||
if [ "$deploy" = "server" ] || [ "${cmd#utest}" != "$cmd" ] ; then
|
||||
app=$(grep '^app=' deploy)
|
||||
app=${app#app=}
|
||||
if [ "$app" = "" ] ; then
|
||||
echo "You must specify app=xxx in deploy, because deploy target is server or utest is required"
|
||||
exit 1
|
||||
fi
|
||||
echo Application: $app
|
||||
fi
|
||||
if [ "$deploy" = "server" ] ; then
|
||||
rootContext=$(grep '^root-context=' deploy)
|
||||
rootContext=${rootContext#root-context=}
|
||||
|
||||
if [ "$unzip" != "" ]; then
|
||||
unziplist=$(grep '^unzip' deploy|tr -d ' ')
|
||||
unziplist=${unziplist#unzip=}
|
||||
if [ "$unziplist" != "" ] ; then
|
||||
unziplist=-Ddeploy.unzip.list="$unziplist"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
zipjslist=$(grep '^zipjs=' deploy)
|
||||
zipjslist=${zipjslist#zipjs=}
|
||||
else
|
||||
deploy=unknown
|
||||
fi
|
||||
if [ "${zipjslist}" = "" ] ; then
|
||||
zipjslist=_na_dir_
|
||||
fi
|
||||
|
||||
prjver="$(head -1 version)"
|
||||
srcver=$(grep '^source=' version)
|
||||
srcver=${srcver#source=}
|
||||
if [ "$srcver" = "" ] ; then
|
||||
srcver=1.4
|
||||
fi
|
||||
tgtver=$(grep '^target=' version)
|
||||
tgtver=${tgtver#target=}
|
||||
if [ "$tgtver" = "" ] ; then
|
||||
tgtver=1.4
|
||||
fi
|
||||
|
||||
this_dflag=$dflag
|
||||
dflagtmp=$(grep '^debug=' version)
|
||||
dflagtmp=${dflagtmp#debug=}
|
||||
if [ "$dflagtmp" = "true" ] ; then
|
||||
this_dflag=on
|
||||
elif [ "$dflagtmp" = "false" ] ; then
|
||||
this_dflag=off
|
||||
fi
|
||||
this_oflag=$oflag
|
||||
oflagtmp=$(grep '^optimize=' version)
|
||||
oflagtmp=${oflagtmp#optimize=}
|
||||
if [ "$oflagtmp" = "true" ] ; then
|
||||
this_oflag=on
|
||||
elif [ "$oflagtmp" = "false" ] ; then
|
||||
this_oflag=off
|
||||
fi
|
||||
|
||||
format="$(head -1 format)"
|
||||
if [ "$format" = "cpp" ] ; then
|
||||
if [ ! -d $outdir ] ; then
|
||||
mkdir $outdir
|
||||
fi
|
||||
if [ \( "${cmd#build}" != "$cmd" \) -o \( "${cmd#clean}" != "$cmd" \) ] ; then
|
||||
(
|
||||
cd $outdir
|
||||
DEPLOY_DIR=../../dist/lib make -f ../src/Makefile $1
|
||||
)
|
||||
fi
|
||||
else
|
||||
CLASSPATH="$CP" ANT_OPTS=-Xmx160M ant $verbose $class_test \
|
||||
$doall -Dformat="$format" -Ddeploy="$deploy" \
|
||||
-Dserver.libs="$server_libs" -Dstart.service="$start_service" \
|
||||
-Djboss.profile="$jboss_profile" -Djboss.ear="$jboss_ear" \
|
||||
-Djboss.home="$jboss_home" -Dtomcat.home="$tomcat_home" \
|
||||
-Djs.trim=$jstrim -Dzipjs=$zipjslist\
|
||||
-Dwar.libs="$war_libs" -Dbasedir=. \
|
||||
-Dear.libs="$ear_libs" -Dimport.libs="$import_libs" \
|
||||
-Dproject.name="$2" -Dproject.version="$prjver" \
|
||||
-Dsource.version="$srcver" -Dtarget.version="$tgtver" \
|
||||
-Dhaltonerror=$haltonerror -Dout.dir=$outdir \
|
||||
-Ddebug=$this_dflag -Doptimize=$this_oflag ${nojc} \
|
||||
-Dshare.javadoc.dir="$javadocdir" \
|
||||
-Djavadoc.class.path="$DCP" -Dapp.name=$app $unziplist \
|
||||
-Droot.context=$rootContext \
|
||||
$dfnList -buildfile ../build.xml $1
|
||||
fi
|
||||
|
||||
if [ $? != 0 ] ; then
|
||||
exit $?
|
||||
fi
|
||||
|
||||
rm -rf velocity.log junit*.properties
|
||||
cd ..
|
||||
}
|
||||
|
||||
start=`date +%s`
|
||||
echo "targets: ${targetList}"
|
||||
for target in $targetList ; do
|
||||
if [ -d $target ] ; then
|
||||
invoke_ant $cmd $target
|
||||
else
|
||||
echo "Ignore: $target doesn't exist"
|
||||
fi
|
||||
done
|
||||
end=`date +%s`
|
||||
buildTime=$(( $end - $start ))
|
||||
buildTimeMM=$(( $buildTime / 60 ))
|
||||
buildTimeSS=$(( $buildTime % 60 ))
|
||||
echo ""
|
||||
echo "Total build process time: ${buildTimeMM} min ${buildTimeSS} sec."
|
||||
10
zk-Timeplot-1.0_2/build.projects
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
fckez
|
||||
dojoz
|
||||
gmapsz
|
||||
timelinez
|
||||
zkflash
|
||||
zkLayout
|
||||
timeplotz
|
||||
keylistener
|
||||
#zkutest
|
||||
#deploy
|
||||
84
zk-Timeplot-1.0_2/build.prop.xml
Executable file
|
|
@ -0,0 +1,84 @@
|
|||
<!-- build.prop.xml
|
||||
Purpose:
|
||||
The properties definition for build.xml
|
||||
Description:
|
||||
We put the properties definition in an separate file
|
||||
to reduce the complexity of build.xml.
|
||||
History:
|
||||
Wed Aug 21 17:44:40 2002, Created by tomyeh
|
||||
|
||||
Copyright (C) 2002 Potix Corporation. All Rights Reserved.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Generic project properties
|
||||
-->
|
||||
<property name="ant.lib.dir" value="${ant.home}/lib"/>
|
||||
|
||||
<!--
|
||||
Compiler settings
|
||||
-->
|
||||
<property name="deprecation" value="on"/>
|
||||
<property name="target.version" value="1.4"/>
|
||||
<property name="source.version" value="1.4"/>
|
||||
|
||||
<!--
|
||||
Build tree settings
|
||||
-->
|
||||
<property name="bin.dir" value="../bin"/>
|
||||
<property name="tmp.dir" value="tmp"/>
|
||||
<!-- property name="out.dir" value="debug"/ --> <!-- invoker must provide -->
|
||||
|
||||
<property name="src.dir" value="src"/>
|
||||
<property name="src.archive.dir" value="${src.dir}/archive"/>
|
||||
<property name="src.export.dir" value="${src.dir}/export"/>
|
||||
<property name="src.mesg.dir" value="${src.archive.dir}/metainfo/mesg"/>
|
||||
<property name="manifest.mf" value="${src.archive.dir}/META-INF/MANIFEST.MF"/>
|
||||
<property name="application.xml" value="${src.archive.dir}/META-INF/application.xml"/>
|
||||
|
||||
<property name="codegen.dir" value="codegen"/>
|
||||
<property name="codegen.archive.dir" value="${codegen.dir}/archive"/>
|
||||
<property name="codegen.archive.web.dir" value="${codegen.archive.dir}/web"/>
|
||||
|
||||
<property name="jar.name" value="${project.name}.jar"/>
|
||||
<property name="war.name" value="${project.name}.war"/>
|
||||
<property name="ear.name" value="${project.name}.ear"/>
|
||||
<property name="jad.name" value="${project.name}.jad"/>
|
||||
<!--property name="ear.name" value="${project.name}-${project.version}.ear"/-->
|
||||
<property name="xar.name" value="${project.name}.*ar"/>
|
||||
|
||||
<property name="outv.dir" value="${out.dir}v"/><!-- used for preverify classes -->
|
||||
<property name="out.tmp.dir" value="${out.dir}/tmp"/>
|
||||
<property name="out.app.dir" value="${out.tmp.dir}/${project.name}"/>
|
||||
<property name="dist.dir" value="../dist"/>
|
||||
<property name="working.dir" value="../working"/>
|
||||
<property name="dist.lib.dir" value="${dist.dir}/lib"/>
|
||||
<property name="dist.lib.ext.dir" value="${dist.lib.dir}/ext"/>
|
||||
<property name="dist.conf.dir" value="${dist.dir}/conf"/>
|
||||
<property name="dist.install.dir" value="${dist.conf.dir}/install"/>
|
||||
<property name="dist.upgrade.dir" value="${dist.conf.dir}/upgrade"/>
|
||||
<property name="dist.test.dir" value="${dist.conf.dir}/test"/>
|
||||
<property name="dist.export.dir" value="${dist.dir}/export"/>
|
||||
<property name="working.javadoc.dir" value="${working.dir}/javadoc/${project.name}"/>
|
||||
<property name="dist.javadoc.dir" value="${share.javadoc.dir}/${project.name}"/>
|
||||
<property name="out.metainf.dir" value="${out.dir}/META-INF"/>
|
||||
|
||||
<!-- tomcat -->
|
||||
<property name="tomcat.home" value="/usr/tomcat"/>
|
||||
<property name="tomcat.lib.dir" value="${tomcat.home}/webapps/${app.name}/WEB-INF/lib"/>
|
||||
<property name="tomcat.webapps.dir" value="${tomcat.home}/webapps"/>
|
||||
<property name="tomcat.conf.dir" value="${tomcat.home}/conf"/>
|
||||
|
||||
<!-- jboss -->
|
||||
<property name="jboss.home" value="/usr/jboss"/>
|
||||
<property name="jboss.lib.dir" value="${jboss.home}/server/${jboss.profile}/lib"/>
|
||||
<property name="jboss.deploy.dir" value="${jboss.home}/server/${jboss.profile}/deploy"/>
|
||||
<property name="jboss.deploy1.dir" value="${jboss.home}/server/${jboss.profile}/${jboss.ear}"/>
|
||||
<property name="jboss.conf.dir" value="${jboss.home}/server/${jboss.profile}/conf"/>
|
||||
<property name="jboss.app.dir" value="${jboss.home}/server/${jboss.profile}/${app.name}"/>
|
||||
<property name="jboss.app.conf.dir" value="${jboss.app.dir}/conf"/>
|
||||
<property name="jboss.app.test.dir" value="${jboss.app.dir}/test"/>
|
||||
<property name="jboss.www.dir" value="${jboss.home}/server/${jboss.profile}/www"/>
|
||||
|
||||
<property name="exclude.list" value="tmp/**, temp/**, ${xar.name}, conf/*.properties"/>
|
||||
|
||||
8
zk-Timeplot-1.0_2/build.setting
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
D.ON=true
|
||||
javadoc=~/prj/javadoc
|
||||
unzip=true
|
||||
debug=true
|
||||
optimize=true
|
||||
zips=false
|
||||
jboss.deploy=default/deploy
|
||||
start.service=Apache Tomcat
|
||||
321
zk-Timeplot-1.0_2/build.target.xml
Executable file
|
|
@ -0,0 +1,321 @@
|
|||
<!-- build.target.xml
|
||||
Purpose:
|
||||
The target definitions for build.xml
|
||||
Description:
|
||||
The target definitions are put in a separate file for two reasons:
|
||||
1) it is shared by two projects
|
||||
2) reduce the complexity of build.xml
|
||||
History:
|
||||
Wed Aug 21 18:01:44 2002, Created by tomyeh
|
||||
|
||||
Copyright (C) 2002-2006 Potix Corporation. All Rights Reserved.
|
||||
-->
|
||||
|
||||
<!-- ======= -->
|
||||
<!-- CODEGEN -->
|
||||
<!-- ======= -->
|
||||
<target name="codegen.mesg" depends="config.build" if="src.mesg.dir.exist">
|
||||
<!-- generate MxxConst.java -->
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/genprop"/>
|
||||
<arg value="-x"/>
|
||||
<arg value="${src.mesg.dir}"/>
|
||||
<arg value="${codegen.dir}"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<!-- ======= -->
|
||||
<!-- COMPILE -->
|
||||
<!-- ======= -->
|
||||
<target name="compile" depends="codegen.mesg" if="compile.required">
|
||||
<mkdir dir="${out.dir}"/>
|
||||
<javac srcdir="${src.dir}:${codegen.dir}" destdir="${out.dir}"
|
||||
debug="${debug}" optimize="${optimize}" encoding="UTF-8"
|
||||
target="${target.version}" deprecation="${deprecation}" source="${source.version}"/>
|
||||
</target>
|
||||
|
||||
<!-- ====== -->
|
||||
<!-- DEPLOY -->
|
||||
<!-- ====== -->
|
||||
|
||||
<target name="deploy.export" depends="config.build" if="src.export.dir.exist">
|
||||
<copy todir="${dist.export.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${src.export.dir}" excludes="**/CVS/**"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="deploy.lib" depends="config.build" if="deploy.lib.required">
|
||||
<copy todir="${dist.lib.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${out.dir}" includes="${xar.name}, ${jad.name}"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="stop.service" depends="config.build"
|
||||
if="start.service.required">
|
||||
<exec executable="net" dir="." failonerror="false">
|
||||
<arg value="stop"/>
|
||||
<arg value="${start.service}"/>
|
||||
</exec>
|
||||
</target>
|
||||
<target name="start.service" depends="config.build"
|
||||
if="start.service.required">
|
||||
<exec executable="net" dir="." failonerror="false">
|
||||
<arg value="start"/>
|
||||
<arg value="${start.service}"/>
|
||||
</exec>
|
||||
</target>
|
||||
<target name="deploy.tomcat.files" depends="config.build"
|
||||
if="deploy.tomcat.required">
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/deploy.unzip.war"/>
|
||||
<arg value="${dist.lib.dir}"/>
|
||||
<arg value="${tomcat.webapps.dir}"/>
|
||||
<arg value="${ear.libs}"/>
|
||||
<arg value="${root.context}/ROOT"/>
|
||||
</exec>
|
||||
|
||||
<copy todir="${tomcat.lib.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.lib.dir}" includes="${server.libs}"/>
|
||||
<fileset dir="${dist.lib.ext.dir}" includes="${server.libs}"/>
|
||||
</copy>
|
||||
|
||||
<copy tofile="${tomcat.conf.dir}/i3-log.conf" file="${dist.conf.dir}/i3-log.conf.local"
|
||||
preservelastmodified="yes" failonerror="false"/>
|
||||
</target>
|
||||
<target name="deploy.tomcat"
|
||||
depends="config.build, stop.service, deploy.tomcat.files, start.service"
|
||||
if="deploy.tomcat.required">
|
||||
</target>
|
||||
|
||||
<target name="deploy.jboss.intact" depends="config.build"
|
||||
if="deploy.jboss.intact.required">
|
||||
<!-- deploy to server intact -->
|
||||
<copy todir="${jboss.deploy1.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${out.dir}" includes="${xar.name}"/>
|
||||
</copy>
|
||||
</target>
|
||||
<target name="deploy.jboss.unzip" depends="config.build"
|
||||
if="deploy.jboss.unzip.required">
|
||||
<!-- deploy to server by unzip -->
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/deploy.unzip"/>
|
||||
<arg value="${out.dir}/${xar.name}"/>
|
||||
<arg value="${jboss.deploy1.dir}"/>
|
||||
<arg value="${deploy.unzip.list}"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<target name="deploy.jboss"
|
||||
depends="config.build, deploy.jboss.unzip, deploy.jboss.intact"
|
||||
if="deploy.jboss.required">
|
||||
<mkdir dir="${dist.conf.dir}"/>
|
||||
|
||||
<!-- deploy configuration files -->
|
||||
<copy tofile="${jboss.conf.dir}/i3-log.conf" file="${dist.conf.dir}/i3-log.conf.local"
|
||||
preservelastmodified="yes" failonerror="false"/>
|
||||
|
||||
<copy todir="${jboss.conf.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.conf.dir}"
|
||||
includes="*-service.xml,i3-ks,*-policy.xml,*.properties"/>
|
||||
</copy>
|
||||
<copy todir="${jboss.app.conf.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.conf.dir}"
|
||||
includes="i3-*.xml" excludes="*-service.xml,i3-ks"/>
|
||||
</copy>
|
||||
|
||||
<!-- deploy external library -->
|
||||
<copy todir="${jboss.lib.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.lib.ext.dir}" includes="${server.libs}"/>
|
||||
</copy>
|
||||
<copy todir="${jboss.lib.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.lib.dir}" includes="${server.libs}"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="deploy"
|
||||
depends="deploy.export, deploy.lib, deploy.tomcat, deploy.jboss">
|
||||
</target>
|
||||
|
||||
<!-- ===== -->
|
||||
<!-- BUILD -->
|
||||
<!-- ===== -->
|
||||
<target name="build.jar" depends="compile, copy.web.jar" if="build.jar.required">
|
||||
<mkdir dir="${src.archive.dir}"/>
|
||||
<mkdir dir="${codegen.archive.dir}"/>
|
||||
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/zipjs"/>
|
||||
<arg value="${dist.lib.ext.dir}/yuicompressor.jar"/>
|
||||
<arg value="${src.archive.dir}/${zipjs}"/>
|
||||
<arg value="${codegen.archive.dir}/${zipjs}"/>
|
||||
</exec>
|
||||
|
||||
<jar jarfile="${out.dir}/${jar.name}" manifest="${manifest.mf}">
|
||||
<fileset dir="${out.dir}" excludes="${exclude.list}"/>
|
||||
<fileset dir="${src.archive.dir}" includes="**"
|
||||
excludes="META-INF/MANIFEST.MF, **/CVS/**, ${zipjs}/**"/>
|
||||
<fileset dir="${codegen.archive.dir}" includes="**"
|
||||
excludes="META-INF/MANIFEST.MF"/>
|
||||
</jar>
|
||||
</target>
|
||||
<target name="build.jad" depends="compile, copy.web.jar" if="build.jad.required">
|
||||
<mkdir dir="${src.archive.dir}"/>
|
||||
<mkdir dir="${codegen.archive.dir}"/>
|
||||
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/preverify"/>
|
||||
<arg value="${out.dir}"/>
|
||||
<arg value="${outv.dir}"/>
|
||||
</exec>
|
||||
<jar jarfile="${out.dir}/${jar.name}" manifest="${manifest.mf}">
|
||||
<fileset dir="${outv.dir}" excludes="${exclude.list}, ${jad.name}"/>
|
||||
<fileset dir="${src.archive.dir}" includes="**"
|
||||
excludes="META-INF/MANIFEST.MF, META-INF/${jad.name}, **/CVS/**, ${zipjs}/**"/>
|
||||
<fileset dir="${codegen.archive.dir}" includes="**"
|
||||
excludes="META-INF/MANIFEST.MF"/>
|
||||
</jar>
|
||||
|
||||
<!-- generate ${out.dir}/${project-name}.jad -->
|
||||
<exec executable="bash" dir="." failonerror="true">
|
||||
<arg value="${bin.dir}/genjad"/>
|
||||
<arg value="${out.dir}/${jar.name}"/>
|
||||
<arg value="${src.archive.dir}/META-INF/${jad.name}"/>
|
||||
<arg value="${out.dir}/${jad.name}"/>
|
||||
</exec>
|
||||
</target>
|
||||
<!-- copy WEB-relevant resource to jar (into codegen.archive.web.dir) -->
|
||||
<target name="copy.web.jar" depends="deploy.export" if="copy.web.jar.required">
|
||||
<mkdir dir="${codegen.archive.web.dir}"/>
|
||||
<copy todir="${codegen.archive.web.dir}" preservelastmodified="yes"
|
||||
failonerror="false">
|
||||
<fileset dir="${dist.export.dir}" includes="${import.libs}"/>
|
||||
<fileset dir="${dist.lib.ext.dir}" includes="${import.libs}"/>
|
||||
<fileset dir="${src.export.dir}" includes="${import.libs}"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="build.war" depends="compile" if="build.war.required">
|
||||
<mkdir dir="${out.dir}"/>
|
||||
<property name="src.web.xml" value="${src.archive.dir}/WEB-INF/web.xml"/>
|
||||
<!-- to let other targets have a chance to override it -->
|
||||
<war warfile="${out.dir}/${war.name}" webxml="${src.web.xml}"
|
||||
manifest="${manifest.mf}">
|
||||
<fileset dir="${src.archive.dir}" includes="**"
|
||||
excludes="WEB-INF/web.xml, META-INF/MANIFEST.MF, **/CVS/**, **/_notes/**, **/_raw/**"/>
|
||||
<fileset dir="${dist.export.dir}" includes="${import.libs}"/>
|
||||
<fileset dir="${dist.lib.ext.dir}" includes="${import.libs}"/>
|
||||
|
||||
<lib dir="${dist.lib.ext.dir}" includes="${war.libs}"/>
|
||||
<lib dir="${dist.lib.dir}" includes="${war.libs}"/>
|
||||
<classes dir="${out.dir}" includes="**" excludes="${exclude.list}"/>
|
||||
</war>
|
||||
</target>
|
||||
|
||||
<target name="build.ear" depends="config.build" if="build.ear.required">
|
||||
<mkdir dir="${out.dir}"/>
|
||||
<!-- build ear -->
|
||||
<ear earfile="${out.dir}/${ear.name}" manifest="${manifest.mf}"
|
||||
appxml="${application.xml}">
|
||||
<fileset dir="${dist.lib.dir}" includes="${ear.libs}"/>
|
||||
<fileset dir="${src.archive.dir}"
|
||||
includes="META-INF/**"
|
||||
excludes="META-INF/MANIFEST.MF, META-INF/application.xml, **/CVS/**"/>
|
||||
</ear>
|
||||
</target>
|
||||
|
||||
<target name="build"
|
||||
depends="config.build, build.war, build.jad, build.jar, build.ear, deploy">
|
||||
</target>
|
||||
|
||||
<!-- ===== -->
|
||||
<!-- CLEAN -->
|
||||
<!-- ===== -->
|
||||
<target name="clean.all" depends="config" if="clean.all.required">
|
||||
<delete quiet="true" includeEmptyDirs="true">
|
||||
<fileset dir="${dist.export.dir}" includes="**"/>
|
||||
</delete>
|
||||
<delete quiet="true">
|
||||
<fileset dir="${dist.lib.dir}" includes="*.?ar, *.jad"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
<target name="clean.bin" depends="config" if="clean.bin.required">
|
||||
<delete quiet="true" dir="${bin.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" depends="clean.all, clean.bin">
|
||||
<delete quiet="true" dir="${out.dir}"/>
|
||||
<delete quiet="true" dir="${tmp.dir}"/>
|
||||
<delete quiet="true" dir="${outv.dir}"/>
|
||||
<delete quiet="true" dir="${codegen.dir}"/>
|
||||
<delete quiet="true">
|
||||
<fileset dir="${dist.lib.dir}" includes="${xar.name}, ${jad.name}"/>
|
||||
<!--fileset dir="${jboss.lib.dir}" includes="${xar.name}"/-->
|
||||
<fileset dir="${jboss.deploy1.dir}" includes="${xar.name}"/>
|
||||
<!--fileset dir="${tomcat.lib.dir}" includes="${xar.name}"/-->
|
||||
<fileset dir="${tomcat.webapps.dir}" includes="${xar.name}"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
<!-- ========= -->
|
||||
<!-- UNIT TEST -->
|
||||
<!-- ========= -->
|
||||
<target name="deploy.test" depends="config" if="dist.test.dir.exist">
|
||||
<copy todir="${jboss.app.test.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${dist.test.dir}" includes="**" excludes="**/CVS/**"/>
|
||||
</copy>
|
||||
</target>
|
||||
<target name="utest" depends="build, deploy.test">
|
||||
<property name="class.test" value="**/*Test.java"/><!-- test all if not defined -->
|
||||
|
||||
<echo message="Test ${class.test}..."/>
|
||||
<junit fork="yes" haltonerror="${haltonerror}" dir="${out.dir}">
|
||||
<jvmarg value="-ea"/>
|
||||
<formatter type="plain" usefile="false"/>
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}"/>
|
||||
<pathelement location="${out.dir}"/>
|
||||
</classpath>
|
||||
<batchtest>
|
||||
<fileset dir="${src.dir}" includes="${class.test}"/>
|
||||
</batchtest>
|
||||
</junit>
|
||||
</target>
|
||||
|
||||
<!-- ============= -->
|
||||
<!-- MISCELLANEOUS -->
|
||||
<!-- ============= -->
|
||||
<target name="javadoc" depends="config.build">
|
||||
<javadoc packagenames="org.*"
|
||||
destdir="${working.javadoc.dir}"
|
||||
author="true" protected="true" version="true" use="true"
|
||||
windowtitle="${project.name} ${project.version} API"
|
||||
doctitle="${project.name} ${project.version} API"
|
||||
additionalparam="-breakiterator -source ${source.version}"
|
||||
bottom="Copyright &copy; 2005-2007 Potix Corporation. All Rights Reserved.">
|
||||
<classpath>
|
||||
<pathelement path="${javadoc.class.path}"/>
|
||||
</classpath>
|
||||
<packageset dir="${src.dir}">
|
||||
<include name="org/**"/>
|
||||
</packageset>
|
||||
<fileset dir="${codegen.dir}">
|
||||
<include name="org/**"/>
|
||||
<exclude name="**/*$$*"/>
|
||||
</fileset>
|
||||
</javadoc>
|
||||
|
||||
<delete quiet="true" dir="${dist.javadoc.dir}"/>
|
||||
<move todir="${dist.javadoc.dir}">
|
||||
<fileset dir="${working.javadoc.dir}"/>
|
||||
</move>
|
||||
<delete quiet="true" dir="${working.javadoc.dir}"/>
|
||||
|
||||
<!-- copy xml and html to the destination since they might be referenced
|
||||
by package.html -->
|
||||
<copy todir="${dist.javadoc.dir}" preservelastmodified="yes">
|
||||
<fileset dir="${src.dir}"
|
||||
includes="org/**/*.xml, org/**/*.html"
|
||||
excludes="**/package.html" />
|
||||
</copy>
|
||||
</target>
|
||||
125
zk-Timeplot-1.0_2/build.txt
Executable file
|
|
@ -0,0 +1,125 @@
|
|||
build - a tool to build or clean up Java projects
|
||||
Copyright (C) 2001-2004 Potix Corporation. All Rights Reserved.
|
||||
|
||||
Usage:
|
||||
build [command] [a=b] [project...]
|
||||
|
||||
Commands:
|
||||
help show this message
|
||||
build.debug build the debug version (default)
|
||||
build.release build the release version (br: shortcut)
|
||||
clean clean up both debug and release
|
||||
clean.debug clean up the debug versin (cd: shortcut)
|
||||
clean.release clean up the debug versin (cr: shortcut)
|
||||
utest.debug unit-test the debug version (ud: shortcut)
|
||||
utest.release unit-test the release version (ur: shortcut)
|
||||
javadoc generates javadoc (doc: shortcut)
|
||||
verbose make ant in verbose mode
|
||||
continue allow unit test to continue even encountering failures
|
||||
unzip unzip ear/war into the deploy directory (as if unzip=true is specified)
|
||||
a=b any pair of definitions. It is useful to control unit test.
|
||||
|
||||
Notes:
|
||||
* If no project specified, all projects in targetList are processed.
|
||||
* If no command specified, build.debug is assumed.
|
||||
* All arguments are case-sensitive
|
||||
* Projects cannot be named with any space
|
||||
* noear, verbose and continue, if specified, must be the first
|
||||
arguments, and the sequence is important.
|
||||
|
||||
----------
|
||||
Files located under .:
|
||||
----------
|
||||
build.setting or build.setting.local
|
||||
Controls how to build. build.setting is ignored if build.setting.local
|
||||
exists. build.setting is part of SVN, while buil.setting.local is not.
|
||||
D.ON=true or D.ON=false
|
||||
Controls whether to turn on D.ON
|
||||
javadoc=~/prj/javadoc
|
||||
Specifies where to store Java apidocs.
|
||||
zipjs=true
|
||||
Optional. Default false.
|
||||
Controls whether to compress the JavaScript files.
|
||||
Note: a JavaScript file is compress only if zipjs=true AND
|
||||
it matches zipjs specified in the deploy file
|
||||
unzip=true
|
||||
Optional. Default: false.
|
||||
Controls whether to unzip files when deploying ear/war.
|
||||
The files to unzip are specified in the deploy file (see below)
|
||||
This flag cannot be overriden by specify the unzip command (see above)
|
||||
debug=false
|
||||
Optinal. Default: true if and only if D.ON is true
|
||||
Controls whether to generate debug info.
|
||||
optimize=true
|
||||
Optinal. Default: true if and only if D.ON is false
|
||||
Controls whether to optimize code generation.
|
||||
|
||||
MANIFEST.MF (Must)
|
||||
Used if the project doesn't contain MANIFEST.MF
|
||||
|
||||
----------
|
||||
Files located under the project directory:
|
||||
----------
|
||||
classpath
|
||||
Secifies the classpath to run ant.
|
||||
NOTE: it must be Unix format, i.e., separated by ':'
|
||||
|
||||
version
|
||||
Specifies the version (only first line is used)
|
||||
|
||||
format
|
||||
Specifies the resulted archive's format. It must be specified.
|
||||
ear
|
||||
The result archive is an ear.
|
||||
jar
|
||||
The result archive is a jar.
|
||||
NOTE: Only src/archive/META-INF and src/archive/metainfo is included!
|
||||
war
|
||||
The result archive is a war.
|
||||
NOTE: src/archive/META-INF and src/arhive/metainfo is excluded!
|
||||
|
||||
deploy (Optional)
|
||||
Specifies how to deploy the result. If omitted, no deployment occurs.
|
||||
lib
|
||||
Deploy the result to dist/lib as a shared library.
|
||||
They are copied to server's lib if specified in server.libs.
|
||||
They are merged to ear if specified in earlib.libs.
|
||||
server
|
||||
Deploy the result to a server as a bean or web container.
|
||||
You must also specify a line:
|
||||
app=YourAppName
|
||||
|
||||
When deploying to server, you could place an extra line in this file
|
||||
if you want to unzip ear into the deploy directory:
|
||||
unzip=true
|
||||
or
|
||||
unzip=we.jar,we.war
|
||||
Notice: this unzip option is enabled only if build.release is targeted
|
||||
or unzip=true is found in build.setting.local.
|
||||
|
||||
war.libs (Optional)
|
||||
Specifies a list of libraries (one per line) under dist/lib/ext that
|
||||
shall be packed to the result war (format must be war).
|
||||
|
||||
server.libs (Optional)
|
||||
Specifies a list of libraries (one per line) under dist/lib and
|
||||
dist/lib/ext that shall be copied to the server's lib directory.
|
||||
Used only deploy: server.
|
||||
|
||||
ear.libs (Optional)
|
||||
Specifies A list of libraries (one per line) under dist/lib
|
||||
or dist/lib/ext that shall be packed to the result ear (format must be ear).
|
||||
Used only if format: ear.
|
||||
|
||||
import.libs (Optional)
|
||||
Specifies a list of files (one per line) under dist/export that
|
||||
shall be packed to the result war (format must be war).
|
||||
Note: dist/export is generated if a project contains src/export.
|
||||
|
||||
cactus.properties (Must if Web-based Unit Test)
|
||||
Specifies the information required by web-based unit test codes.
|
||||
|
||||
class.test.local (Optional)
|
||||
Specifies a list of classes (one per line) that the unit test must
|
||||
test. If no classes specified at all, all classes registered in all
|
||||
AllTests.java files are tested.
|
||||
182
zk-Timeplot-1.0_2/build.xml
Executable file
|
|
@ -0,0 +1,182 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE project [
|
||||
<!ENTITY properties SYSTEM "file:build.prop.xml">
|
||||
<!ENTITY targets SYSTEM "file:build.target.xml">
|
||||
]>
|
||||
|
||||
<!-- build.xml
|
||||
Purpose:
|
||||
The internal build file for ant.
|
||||
Description:
|
||||
It is invoked by the bash script, build, to do the proper
|
||||
intialization.
|
||||
This build file is used only internally. For SDK to build user's
|
||||
projects, use another file
|
||||
History:
|
||||
March 29 15:11 2001, Created by henrichen
|
||||
August 21 14:27 2002, Created by tomyeh
|
||||
|
||||
Copyright (C) 2002 Potix Corporation. All Rights Reserved.
|
||||
-->
|
||||
|
||||
<project name="potix.inside" default="build" basedir=".">
|
||||
<description>The internal potix build file for ant.</description>
|
||||
<!-- ======= -->
|
||||
<!-- INITIAL -->
|
||||
<!-- ======= -->
|
||||
&properties;
|
||||
|
||||
<!-- ====== -->
|
||||
<!-- CONFIG -->
|
||||
<!-- ====== -->
|
||||
<target name="verbose" if="verbose.required">
|
||||
<!-- show the current environment -->
|
||||
<echo message="${project.name}: ${project.version}"/>
|
||||
<echo message=""/>
|
||||
|
||||
<echo message="java.class.path = ${java.class.path}"/>
|
||||
<echo message=""/>
|
||||
<echo message="java.home = ${java.home}"/>
|
||||
<echo message="out.dir = ${out.dir}"/>
|
||||
<echo message="debug = ${debug}"/>
|
||||
<echo message="optimize = ${optimize}"/>
|
||||
</target>
|
||||
|
||||
<target name="config" depends="verbose">
|
||||
<!--tstamp/-->
|
||||
|
||||
<available file="${src.mesg.dir}" property="src.mesg.dir.exist"/>
|
||||
<available file="${src.export.dir}" property="src.export.dir.exist"/>
|
||||
|
||||
<available file="${dist.test.dir}" property="dist.test.dir.exist"/>
|
||||
|
||||
<available file="${bin.dir}/CVS" property="bin.CVS.dir.exist"/>
|
||||
<available file="${bin.dir}/.svn" property="bin.svn.dir.exist"/>
|
||||
<available file="${dist.lib.ext.dir}/CVS" property="lib.ext.CVS.dir.exist"/>
|
||||
<available file="${dist.lib.ext.dir}/.svn" property="lib.ext.svn.dir.exist"/>
|
||||
|
||||
<available file="${src.archive.dir}/META-INF/${jad.name}" property="jad.exist"/>
|
||||
|
||||
<condition property="copy.web.jar.required">
|
||||
<not>
|
||||
<equals arg1="${import.libs}" arg2="nonexist"/>
|
||||
</not>
|
||||
</condition>
|
||||
|
||||
<!-- format -->
|
||||
<condition property="build.ear.required">
|
||||
<equals arg1="${format}" arg2="ear"/>
|
||||
</condition>
|
||||
<condition property="build.jad.required">
|
||||
<and>
|
||||
<equals arg1="${format}" arg2="jar"/>
|
||||
<isset property="jad.exist"/>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="build.jar.required">
|
||||
<and>
|
||||
<equals arg1="${format}" arg2="jar"/>
|
||||
<not>
|
||||
<isset property="jad.exist"/>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="build.war.required">
|
||||
<equals arg1="${format}" arg2="war"/>
|
||||
</condition>
|
||||
|
||||
<condition property="compile.required">
|
||||
<or>
|
||||
<equals arg1="${format}" arg2="jar"/>
|
||||
<equals arg1="${format}" arg2="war"/>
|
||||
</or>
|
||||
</condition>
|
||||
|
||||
<!-- deploy -->
|
||||
<condition property="deploy.lib.required">
|
||||
<equals arg1="${deploy}" arg2="lib"/>
|
||||
</condition>
|
||||
<condition property="deploy.server.required">
|
||||
<equals arg1="${deploy}" arg2="server"/>
|
||||
</condition>
|
||||
|
||||
<!-- deploy jboss -->
|
||||
<condition property="deploy.jboss.required">
|
||||
<and>
|
||||
<isset property="deploy.server.required"/>
|
||||
<equals arg1="${format}" arg2="ear"/>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="deploy.jboss.intact.required">
|
||||
<and>
|
||||
<isset property="deploy.jboss.required"/>
|
||||
<not>
|
||||
<isset property="deploy.unzip.list"/>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="deploy.jboss.unzip.required">
|
||||
<and>
|
||||
<isset property="deploy.jboss.required"/>
|
||||
<isset property="deploy.unzip.list"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<!-- deploy tomcat -->
|
||||
<condition property="deploy.tomcat.required">
|
||||
<and>
|
||||
<isset property="deploy.server.required"/>
|
||||
<equals arg1="${format}" arg2="deploy"/>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="deploy.tomcat.intact.required">
|
||||
<and>
|
||||
<isset property="deploy.tomcat.required"/>
|
||||
<not>
|
||||
<isset property="deploy.unzip.list"/>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
<condition property="deploy.tomcat.unzip.required">
|
||||
<and>
|
||||
<isset property="deploy.tomcat.required"/>
|
||||
<isset property="deploy.unzip.list"/>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<condition property="start.service.required">
|
||||
<and>
|
||||
<isset property="deploy.tomcat.required"/>
|
||||
<not>
|
||||
<equals arg1="${start.service}" arg2=""/>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
|
||||
<!-- clean relevant -->
|
||||
<condition property="clean.all.required">
|
||||
<isset property="do.all"/>
|
||||
</condition>
|
||||
<condition property="clean.bin.required">
|
||||
<and>
|
||||
<isset property="do.all"/>
|
||||
<not>
|
||||
<or>
|
||||
<isset property="bin.CVS.dir.exist"/>
|
||||
<isset property="bin.svn.dir.exist"/>
|
||||
</or>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
</target>
|
||||
<target name="config.build" depends="config">
|
||||
<mkdir dir="${codegen.dir}"/>
|
||||
<mkdir dir="${dist.export.dir}"/>
|
||||
</target>
|
||||
|
||||
<!-- ======= -->
|
||||
<!-- TARGETS -->
|
||||
<!-- ======= -->
|
||||
&targets;
|
||||
|
||||
</project>
|
||||
BIN
zk-Timeplot-1.0_2/dist/lib/timelinez.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/lib/timeplotz.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/lib/zcommon.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/lib/zk.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/lib/zul.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/lib/zweb.jar
vendored
Executable file
BIN
zk-Timeplot-1.0_2/dist/src/timeplotz-sources.jar
vendored
Executable file
57
zk-Timeplot-1.0_2/javadoc/allclasses-frame.html
Executable file
|
|
@ -0,0 +1,57 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
All Classes (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<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="org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator" target="classFrame">AverageOperator</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">DefaultTimeGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">DefaultValueGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">LogarithmicValueGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator" target="classFrame"><I>Operator</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data" target="classFrame">PlotData</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data" target="classFrame">PlotDataSource</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot" target="classFrame">Plotinfo</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator" target="classFrame">SumOperator</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry" target="classFrame"><I>TimeGeometry</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot" target="classFrame">Timeplot</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl" target="classFrame">TimeplotComponent</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry" target="classFrame"><I>ValueGeometry</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot" target="classFrame">Version</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
57
zk-Timeplot-1.0_2/javadoc/allclasses-noframe.html
Executable file
|
|
@ -0,0 +1,57 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
All Classes (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<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="org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><I>Operator</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><I>TimeGeometry</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><I>ValueGeometry</I></A>
|
||||
<BR>
|
||||
<A HREF="org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot">Version</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
216
zk-Timeplot-1.0_2/javadoc/constant-values.html
Executable file
|
|
@ -0,0 +1,216 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Constant Field Values (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Constant Field Values (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?constant-values.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="#org.zkforge">org.zkforge.*</A>
|
||||
</UL>
|
||||
|
||||
<A NAME="org.zkforge"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left"><FONT SIZE="+2">
|
||||
org.zkforge.*</FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="3">org.zkforge.timeplot.<A HREF="org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot">Version</A></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.Version.UID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/Version.html#UID">UID</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"1.0_2"</CODE></TD>
|
||||
</TR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="3">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.geometry.ValueGeometry.BOTTOM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html#BOTTOM">BOTTOM</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"bottom"</CODE></TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.geometry.ValueGeometry.LEFT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html#LEFT">LEFT</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"left"</CODE></TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.geometry.ValueGeometry.RIGHT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html#RIGHT">RIGHT</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"right"</CODE></TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.geometry.ValueGeometry.SHORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html#SHORT">SHORT</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"short"</CODE></TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="org.zkforge.timeplot.geometry.ValueGeometry.TOP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final java.lang.String</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html#TOP">TOP</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>"top"</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=2 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?constant-values.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
146
zk-Timeplot-1.0_2/javadoc/deprecated-list.html
Executable file
|
|
@ -0,0 +1,146 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Deprecated List (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Deprecated List (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?deprecated-list.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 SIZE="4" NOSHADE>
|
||||
<B>Contents</B><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=2 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?deprecated-list.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
223
zk-Timeplot-1.0_2/javadoc/help-doc.html
Executable file
|
|
@ -0,0 +1,223 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
API Help (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="API Help (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?help-doc.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>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</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>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Annotation Type</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each annotation type has its own separate page with the following sections:<UL>
|
||||
<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
|
||||
</BLOCKQUOTE>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Enum</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each enum has its own separate page with the following sections:<UL>
|
||||
<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
|
||||
</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>
|
||||
<H3>
|
||||
Constant Field Values</H3>
|
||||
The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
|
||||
<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=2 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?help-doc.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
771
zk-Timeplot-1.0_2/javadoc/index-all.html
Executable file
|
|
@ -0,0 +1,771 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Index (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Index (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?index-all.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="#_D_">D</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <HR>
|
||||
<A NAME="_A_"><!-- --></A><H2>
|
||||
<B>A</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#addPlotData(org.zkforge.timeplot.data.PlotData)"><B>addPlotData(PlotData)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#addPlotEvent(org.zkforge.timeline.data.OccurEvent)"><B>addPlotEvent(OccurEvent)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><B>AverageOperator</B></A> - Class in <A HREF="./org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A><DD> <DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html#AverageOperator()"><B>AverageOperator()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_B_"><!-- --></A><H2>
|
||||
<B>B</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#BOTTOM"><B>BOTTOM</B></A> -
|
||||
Static variable in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_D_"><!-- --></A><H2>
|
||||
<B>D</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultTimeGeometry</B></A> - Class in <A HREF="./org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A><DD> <DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#DefaultTimeGeometry()"><B>DefaultTimeGeometry()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultValueGeometry</B></A> - Class in <A HREF="./org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A><DD> <DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#DefaultValueGeometry()"><B>DefaultValueGeometry()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_G_"><!-- --></A><H2>
|
||||
<B>G</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getAxisColor()"><B>getAxisColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getAxisColor()"><B>getAxisColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getAxisColor()"><B>getAxisColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisColor()"><B>getAxisColor()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisColor()"><B>getAxisColor()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getAxisLabelsPlacement()"><B>getAxisLabelsPlacement()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getAxisLabelsPlacement()"><B>getAxisLabelsPlacement()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getAxisLabelsPlacement()"><B>getAxisLabelsPlacement()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisLabelsPlacement()"><B>getAxisLabelsPlacement()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisLabelsPlacement()"><B>getAxisLabelsPlacement()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getBubbleHeight()"><B>getBubbleHeight()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getBubbleWidth()"><B>getBubbleWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getDataModel()"><B>getDataModel()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#getDataSourceColumn()"><B>getDataSourceColumn()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#getDataSourceUri()"><B>getDataSourceUri()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getDotColor()"><B>getDotColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getDotRadius()"><B>getDotRadius()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getEventLineWidth()"><B>getEventLineWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getEventModel()"><B>getEventModel()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getEventSourceUri()"><B>getEventSourceUri()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getFillColor()"><B>getFillColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridColor()"><B>getGridColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridColor()"><B>getGridColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridColor()"><B>getGridColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getGridColor()"><B>getGridColor()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getGridColor()"><B>getGridColor()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridLineWidth()"><B>getGridLineWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridLineWidth()"><B>getGridLineWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridLineWidth()"><B>getGridLineWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getGridLineWidth()"><B>getGridLineWidth()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getGridLineWidth()"><B>getGridLineWidth()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridShortSize()"><B>getGridShortSize()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridShortSize()"><B>getGridShortSize()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getGridShortSize()"><B>getGridShortSize()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridSpacing()"><B>getGridSpacing()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridSpacing()"><B>getGridSpacing()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getGridSpacing()"><B>getGridSpacing()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridStep()"><B>getGridStep()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStep()"><B>getGridStep()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridStepRange()"><B>getGridStepRange()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStepRange()"><B>getGridStepRange()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridType()"><B>getGridType()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridType()"><B>getGridType()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getGridType()"><B>getGridType()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Timeplot.html#getHeight()"><B>getHeight()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#getId()"><B>getId()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getInnerAttrs()"><B>getInnerAttrs()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Timeplot.html#getInnerAttrs()"><B>getInnerAttrs()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getLineColor()"><B>getLineColor()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getLineWidth()"><B>getLineWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getMax()"><B>getMax()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getMax()"><B>getMax()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getMax()"><B>getMax()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getMax()"><B>getMax()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getMax()"><B>getMax()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getMin()"><B>getMin()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getMin()"><B>getMin()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getMin()"><B>getMin()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getMin()"><B>getMin()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getMin()"><B>getMin()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html#getOperator()"><B>getOperator()</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/Operator.html#getOperator()"><B>getOperator()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/SumOperator.html#getOperator()"><B>getOperator()</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getOperator()"><B>getOperator()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html#getParams()"><B>getParams()</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/Operator.html#getParams()"><B>getParams()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/SumOperator.html#getParams()"><B>getParams()</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getPlotDataSource()"><B>getPlotDataSource()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#getSeparator()"><B>getSeparator()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html#getSize()"><B>getSize()</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#getTime()"><B>getTime()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getTimeGeometry()"><B>getTimeGeometry()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getTimeGeometryId()"><B>getTimeGeometryId()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeGeometryId()"><B>getTimeGeometryId()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getTimeValuePosition()"><B>getTimeValuePosition()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeValuePosition()"><B>getTimeValuePosition()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#getValue()"><B>getValue()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getValueGeometry()"><B>getValueGeometry()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getValueGeometryId()"><B>getValueGeometryId()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getValueGeometryId()"><B>getValueGeometryId()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#getValueGeometryId()"><B>getValueGeometryId()</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#getValuesOpacity()"><B>getValuesOpacity()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Timeplot.html#getWidth()"><B>getWidth()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_I_"><!-- --></A><H2>
|
||||
<B>I</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#invalidate()"><B>invalidate()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#isRoundValues()"><B>isRoundValues()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#isShowValues()"><B>isShowValues()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_L_"><!-- --></A><H2>
|
||||
<B>L</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#LEFT"><B>LEFT</B></A> -
|
||||
Static variable in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>LogarithmicValueGeometry</B></A> - Class in <A HREF="./org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A><DD> <DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#LogarithmicValueGeometry()"><B>LogarithmicValueGeometry()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_M_"><!-- --></A><H2>
|
||||
<B>M</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#modifyPlotData(org.zkforge.timeplot.data.PlotData)"><B>modifyPlotData(PlotData)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#modifyPlotEvent(org.zkforge.timeline.data.OccurEvent)"><B>modifyPlotEvent(OccurEvent)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_O_"><!-- --></A><H2>
|
||||
<B>O</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#onListDataChange(org.zkoss.zul.event.ListDataEvent)"><B>onListDataChange(ListDataEvent)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#onListEventChange(org.zkoss.zul.event.ListDataEvent)"><B>onListEventChange(ListDataEvent)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>Operator</B></A> - Interface in <A HREF="./org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A><DD> <DT><A HREF="./org/zkforge/timeplot/package-summary.html"><B>org.zkforge.timeplot</B></A> - package org.zkforge.timeplot<DD> <DT><A HREF="./org/zkforge/timeplot/data/package-summary.html"><B>org.zkforge.timeplot.data</B></A> - package org.zkforge.timeplot.data<DD> <DT><A HREF="./org/zkforge/timeplot/geometry/package-summary.html"><B>org.zkforge.timeplot.geometry</B></A> - package org.zkforge.timeplot.geometry<DD> <DT><A HREF="./org/zkforge/timeplot/impl/package-summary.html"><B>org.zkforge.timeplot.impl</B></A> - package org.zkforge.timeplot.impl<DD> <DT><A HREF="./org/zkforge/timeplot/operator/package-summary.html"><B>org.zkforge.timeplot.operator</B></A> - package org.zkforge.timeplot.operator<DD> </DL>
|
||||
<HR>
|
||||
<A NAME="_P_"><!-- --></A><H2>
|
||||
<B>P</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><B>PlotData</B></A> - Class in <A HREF="./org/zkforge/timeplot/data/package-summary.html">org.zkforge.timeplot.data</A><DD> <DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#PlotData()"><B>PlotData()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><B>PlotDataSource</B></A> - Class in <A HREF="./org/zkforge/timeplot/data/package-summary.html">org.zkforge.timeplot.data</A><DD> <DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#PlotDataSource()"><B>PlotDataSource()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><B>Plotinfo</B></A> - Class in <A HREF="./org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A><DD> <DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#Plotinfo()"><B>Plotinfo()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_R_"><!-- --></A><H2>
|
||||
<B>R</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#removePlotData(org.zkforge.timeplot.data.PlotData)"><B>removePlotData(PlotData)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#removePlotEvent(org.zkforge.timeline.data.OccurEvent)"><B>removePlotEvent(OccurEvent)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#repaint()"><B>repaint()</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#RIGHT"><B>RIGHT</B></A> -
|
||||
Static variable in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_S_"><!-- --></A><H2>
|
||||
<B>S</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setAxisColor(java.lang.String)"><B>setAxisColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setAxisColor(java.lang.String)"><B>setAxisColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setAxisColor(java.lang.String)"><B>setAxisColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisColor(java.lang.String)"><B>setAxisColor(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisColor(java.lang.String)"><B>setAxisColor(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setAxisLabelsPlacement(java.lang.String)"><B>setAxisLabelsPlacement(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setAxisLabelsPlacement(java.lang.String)"><B>setAxisLabelsPlacement(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setAxisLabelsPlacement(java.lang.String)"><B>setAxisLabelsPlacement(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisLabelsPlacement(java.lang.String)"><B>setAxisLabelsPlacement(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisLabelsPlacement(java.lang.String)"><B>setAxisLabelsPlacement(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setBubbleHeight(int)"><B>setBubbleHeight(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setBubbleWidth(int)"><B>setBubbleWidth(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setDataModel(org.zkoss.zul.ListModel)"><B>setDataModel(ListModel)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#setDataSourceColumn(int)"><B>setDataSourceColumn(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#setDataSourceUri(java.lang.String)"><B>setDataSourceUri(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setDotColor(java.lang.String)"><B>setDotColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setDotRadius(float)"><B>setDotRadius(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setEventLineWidth(float)"><B>setEventLineWidth(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setEventModel(org.zkoss.zul.ListModel)"><B>setEventModel(ListModel)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setEventSourceUri(java.lang.String)"><B>setEventSourceUri(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setFillColor(java.lang.String)"><B>setFillColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridColor(java.lang.String)"><B>setGridColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridColor(java.lang.String)"><B>setGridColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridColor(java.lang.String)"><B>setGridColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setGridColor(java.lang.String)"><B>setGridColor(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setGridColor(java.lang.String)"><B>setGridColor(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridLineWidth(float)"><B>setGridLineWidth(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridLineWidth(float)"><B>setGridLineWidth(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridLineWidth(float)"><B>setGridLineWidth(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setGridLineWidth(float)"><B>setGridLineWidth(float)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setGridLineWidth(float)"><B>setGridLineWidth(float)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridShortSize(int)"><B>setGridShortSize(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridShortSize(int)"><B>setGridShortSize(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setGridShortSize(int)"><B>setGridShortSize(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridSpacing(int)"><B>setGridSpacing(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridSpacing(int)"><B>setGridSpacing(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setGridSpacing(int)"><B>setGridSpacing(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridStep(int)"><B>setGridStep(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStep(int)"><B>setGridStep(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridStepRange(int)"><B>setGridStepRange(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStepRange(int)"><B>setGridStepRange(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridType(java.lang.String)"><B>setGridType(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridType(java.lang.String)"><B>setGridType(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setGridType(java.lang.String)"><B>setGridType(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Timeplot.html#setHeight(java.lang.String)"><B>setHeight(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#setId(int)"><B>setId(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setLineColor(java.lang.String)"><B>setLineColor(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setLineWidth(float)"><B>setLineWidth(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setMax(int)"><B>setMax(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setMax(int)"><B>setMax(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setMax(int)"><B>setMax(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setMax(int)"><B>setMax(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setMax(int)"><B>setMax(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setMin(int)"><B>setMin(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setMin(int)"><B>setMin(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setMin(int)"><B>setMin(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setMin(int)"><B>setMin(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#setMin(int)"><B>setMin(int)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setOperator(org.zkforge.timeplot.operator.Operator)"><B>setOperator(Operator)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setParent(org.zkoss.zk.ui.Component)"><B>setParent(Component)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setPlotDataSource(org.zkforge.timeplot.data.PlotDataSource)"><B>setPlotDataSource(PlotDataSource)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setRoundValues(boolean)"><B>setRoundValues(boolean)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotDataSource.html#setSeparator(java.lang.String)"><B>setSeparator(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setShowValues(boolean)"><B>setShowValues(boolean)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/AverageOperator.html#setSize(int)"><B>setSize(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#setTime(java.util.Date)"><B>setTime(Date)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setTimeGeometry(org.zkforge.timeplot.geometry.TimeGeometry)"><B>setTimeGeometry(TimeGeometry)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setTimeValuePosition(java.lang.String)"><B>setTimeValuePosition(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html#setTimeValuePosition(java.lang.String)"><B>setTimeValuePosition(String)</B></A> -
|
||||
Method in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#setValue(float)"><B>setValue(float)</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setValueGeometry(org.zkforge.timeplot.geometry.ValueGeometry)"><B>setValueGeometry(ValueGeometry)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Plotinfo.html#setValuesOpacity(int)"><B>setValuesOpacity(int)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Timeplot.html#setWidth(java.lang.String)"><B>setWidth(String)</B></A> -
|
||||
Method in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#SHORT"><B>SHORT</B></A> -
|
||||
Static variable in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><B>SumOperator</B></A> - Class in <A HREF="./org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A><DD> <DT><A HREF="./org/zkforge/timeplot/operator/SumOperator.html#SumOperator()"><B>SumOperator()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.operator.<A HREF="./org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_T_"><!-- --></A><H2>
|
||||
<B>T</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>TimeGeometry</B></A> - Interface in <A HREF="./org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A><DD> <DT><A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><B>Timeplot</B></A> - Class in <A HREF="./org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A><DD> <DT><A HREF="./org/zkforge/timeplot/Timeplot.html#Timeplot()"><B>Timeplot()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><B>TimeplotComponent</B></A> - Class in <A HREF="./org/zkforge/timeplot/impl/package-summary.html">org.zkforge.timeplot.impl</A><DD> <DT><A HREF="./org/zkforge/timeplot/impl/TimeplotComponent.html#TimeplotComponent()"><B>TimeplotComponent()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.impl.<A HREF="./org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html#TOP"><B>TOP</B></A> -
|
||||
Static variable in interface org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/data/PlotData.html#toString()"><B>toString()</B></A> -
|
||||
Method in class org.zkforge.timeplot.data.<A HREF="./org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html#toString()"><B>toString()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>
|
||||
<DD>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#toString()"><B>toString()</B></A> -
|
||||
Method in class org.zkforge.timeplot.geometry.<A HREF="./org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_U_"><!-- --></A><H2>
|
||||
<B>U</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/Version.html#UID"><B>UID</B></A> -
|
||||
Static variable in class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot">Version</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_V_"><!-- --></A><H2>
|
||||
<B>V</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>ValueGeometry</B></A> - Interface in <A HREF="./org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A><DD> <DT><A HREF="./org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><B>Version</B></A> - Class in <A HREF="./org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A><DD> <DT><A HREF="./org/zkforge/timeplot/Version.html#Version()"><B>Version()</B></A> -
|
||||
Constructor for class org.zkforge.timeplot.<A HREF="./org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot">Version</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_D_">D</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</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=2 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?index-all.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
39
zk-Timeplot-1.0_2/javadoc/index.html
Executable file
|
|
@ -0,0 +1,39 @@
|
|||
<!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 Mon Oct 27 11:44:37 CST 2008-->
|
||||
<TITLE>
|
||||
timeplotz 1.0_2 API
|
||||
</TITLE>
|
||||
<SCRIPT type="text/javascript">
|
||||
targetPage = "" + window.location.search;
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
targetPage = targetPage.substring(1);
|
||||
if (targetPage.indexOf(":") != -1)
|
||||
targetPage = "undefined";
|
||||
function loadFrames() {
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
top.classFrame.location = top.targetPage;
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
</HEAD>
|
||||
<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
|
||||
<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
|
||||
<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" scrolling="yes">
|
||||
<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>
|
||||
1227
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/Plotinfo.html
Executable file
415
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/Timeplot.html
Executable file
|
|
@ -0,0 +1,415 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:36 CST 2008 -->
|
||||
<TITLE>
|
||||
Timeplot (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Timeplot (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/Timeplot.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="../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/Timeplot.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Timeplot.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_org.zkoss.zk.ui.HtmlBasedComponent">NESTED</A> | <A HREF="#fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">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">
|
||||
org.zkforge.timeplot</FONT>
|
||||
<BR>
|
||||
Class Timeplot</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by ">org.zkoss.zk.ui.AbstractComponent
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by ">org.zkoss.zk.ui.HtmlBasedComponent
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">org.zkforge.timeplot.impl.TimeplotComponent</A>
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.Timeplot</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Cloneable, org.zkoss.zk.ui.Component, org.zkoss.zk.ui.sys.ComponentCtrl</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>Timeplot</B><DT>extends <A HREF="../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../serialized-form.html#org.zkforge.timeplot.Timeplot">Serialized Form</A></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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Nested Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="nested_classes_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>org.zkoss.zk.ui.HtmlBasedComponent.ExtraCtrl</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>RS_NO_DISPLAY, RS_NO_HEIGHT, RS_NO_WIDTH</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkoss.zk.ui.Component"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from interface org.zkoss.zk.ui.Component</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>APPLICATION_SCOPE, COMPONENT_SCOPE, DESKTOP_SCOPE, PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, SPACE_SCOPE</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Timeplot.html#Timeplot()">Timeplot</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Timeplot.html#getHeight()">getHeight</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Timeplot.html#getInnerAttrs()">getInnerAttrs</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Timeplot.html#getWidth()">getWidth</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="../../../org/zkforge/timeplot/Timeplot.html#setHeight(java.lang.String)">setHeight</A></B>(java.lang.String height)</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="../../../org/zkforge/timeplot/Timeplot.html#setWidth(java.lang.String)">setWidth</A></B>(java.lang.String width)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>focus, getDraggable, getDroppable, getLeft, getOuterAttrs, getRealSclass, getRealStyle, getRealStyleFlags, getSclass, getStyle, getTooltiptext, getTop, getZIndex, newExtraCtrl, setClass, setDraggable, setDroppable, setLeft, setSclass, setStyle, setTooltiptext, setTop, setZIndex</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_org.zkoss.zk.ui.AbstractComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class org.zkoss.zk.ui.AbstractComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>addAnnotation, addAnnotation, addEventHandler, addEventListener, addForward, addForward, addMoved, addSharedAnnotationMap, addSharedEventHandlerMap, appendAsapAttr, appendChild, applyProperties, clone, containsVariable, detach, equals, getAnnotatedProperties, getAnnotatedPropertiesBy, getAnnotation, getAnnotation, getAnnotations, getAnnotations, getAttribute, getAttribute, getAttributes, getAttributes, getChildren, getDefinition, getDesktop, getEventHandler, getEventHandlerNames, getExtraCtrl, getFellow, getFellowIfAny, getFirstChild, getId, getLastChild, getListenerIterator, getMold, getMoldURI, getNamespace, getNextSibling, getPage, getParent, getPreviousSibling, getPropagatee, getRoot, getSpaceOwner, getUuid, getVariable, insertBefore, invalidate, isAsapRequired, isChildable, isListenerAvailable, isVisible, onChildAdded, onChildRemoved, onDrawNewChild, onPageAttached, onPageDetached, onWrongValue, redraw, removeAttribute, removeAttribute, removeChild, removeEventListener, removeForward, removeForward, response, sessionDidActivate, sessionWillPassivate, setAttribute, setAttribute, setComponentDefinition, setId, setMold, setPage, setPageBefore, setParent, setVariable, setVisible, smartUpdate, smartUpdate, smartUpdate, smartUpdateDeferred, toString, unsetVariable</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="Timeplot()"><!-- --></A><H3>
|
||||
Timeplot</H3>
|
||||
<PRE>
|
||||
public <B>Timeplot</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getInnerAttrs()"><!-- --></A><H3>
|
||||
getInnerAttrs</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getInnerAttrs</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>getInnerAttrs</CODE> in class <CODE>org.zkoss.zk.ui.HtmlBasedComponent</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getHeight()"><!-- --></A><H3>
|
||||
getHeight</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getHeight</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>getHeight</CODE> in class <CODE>org.zkoss.zk.ui.HtmlBasedComponent</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setHeight(java.lang.String)"><!-- --></A><H3>
|
||||
setHeight</H3>
|
||||
<PRE>
|
||||
public void <B>setHeight</B>(java.lang.String height)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>setHeight</CODE> in class <CODE>org.zkoss.zk.ui.HtmlBasedComponent</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getWidth()"><!-- --></A><H3>
|
||||
getWidth</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>getWidth</CODE> in class <CODE>org.zkoss.zk.ui.HtmlBasedComponent</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setWidth(java.lang.String)"><!-- --></A><H3>
|
||||
setWidth</H3>
|
||||
<PRE>
|
||||
public void <B>setWidth</B>(java.lang.String width)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>setWidth</CODE> in class <CODE>org.zkoss.zk.ui.HtmlBasedComponent</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=2 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/Timeplot.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="../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/Timeplot.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Timeplot.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_org.zkoss.zk.ui.HtmlBasedComponent">NESTED</A> | <A HREF="#fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
260
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/Version.html
Executable file
|
|
@ -0,0 +1,260 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Version (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Version (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/Version.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="../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/Version.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Version.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="#methods_inherited_from_class_java.lang.Object">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> | METHOD</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
org.zkforge.timeplot</FONT>
|
||||
<BR>
|
||||
Class Version</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.Version</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>Version</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Version.html#UID">UID</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../org/zkforge/timeplot/Version.html#Version()">Version</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Field Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="UID"><!-- --></A><H3>
|
||||
UID</H3>
|
||||
<PRE>
|
||||
public static final java.lang.String <B>UID</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.zkforge.timeplot.Version.UID">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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="Version()"><!-- --></A><H3>
|
||||
Version</H3>
|
||||
<PRE>
|
||||
public <B>Version</B>()</PRE>
|
||||
<DL>
|
||||
</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=2 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/Version.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="../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/Version.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Version.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="#methods_inherited_from_class_java.lang.Object">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> | METHOD</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
144
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/class-use/Plotinfo.html
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.Plotinfo (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.Plotinfo (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-usePlotinfo.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Plotinfo.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>org.zkforge.timeplot.Plotinfo</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.Plotinfo
|
||||
<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=2 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="../../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-usePlotinfo.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Plotinfo.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
144
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/class-use/Timeplot.html
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.Timeplot (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.Timeplot (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-useTimeplot.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Timeplot.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>org.zkforge.timeplot.Timeplot</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.Timeplot
|
||||
<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=2 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="../../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-useTimeplot.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Timeplot.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
144
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/class-use/Version.html
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.Version (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.Version (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-useVersion.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Version.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>org.zkforge.timeplot.Version</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.Version
|
||||
<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=2 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="../../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><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?org/zkforge/timeplot/\class-useVersion.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Version.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
369
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/PlotData.html
Executable file
|
|
@ -0,0 +1,369 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
PlotData (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="PlotData (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/PlotData.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="../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/PlotData.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotData.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">
|
||||
org.zkforge.timeplot.data</FONT>
|
||||
<BR>
|
||||
Class PlotData</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.data.PlotData</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>PlotData</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotData.html#PlotData()">PlotData</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</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="../../../../org/zkforge/timeplot/data/PlotData.html#getId()">getId</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.util.Date</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotData.html#getTime()">getTime</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotData.html#getValue()">getValue</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="../../../../org/zkforge/timeplot/data/PlotData.html#setId(int)">setId</A></B>(int id)</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="../../../../org/zkforge/timeplot/data/PlotData.html#setTime(java.util.Date)">setTime</A></B>(java.util.Date time)</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="../../../../org/zkforge/timeplot/data/PlotData.html#setValue(float)">setValue</A></B>(float value)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotData.html#toString()">toString</A></B>()</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="PlotData()"><!-- --></A><H3>
|
||||
PlotData</H3>
|
||||
<PRE>
|
||||
public <B>PlotData</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="toString()"><!-- --></A><H3>
|
||||
toString</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>toString</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getId()"><!-- --></A><H3>
|
||||
getId</H3>
|
||||
<PRE>
|
||||
public int <B>getId</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setId(int)"><!-- --></A><H3>
|
||||
setId</H3>
|
||||
<PRE>
|
||||
public void <B>setId</B>(int id)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getTime()"><!-- --></A><H3>
|
||||
getTime</H3>
|
||||
<PRE>
|
||||
public java.util.Date <B>getTime</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setTime(java.util.Date)"><!-- --></A><H3>
|
||||
setTime</H3>
|
||||
<PRE>
|
||||
public void <B>setTime</B>(java.util.Date time)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getValue()"><!-- --></A><H3>
|
||||
getValue</H3>
|
||||
<PRE>
|
||||
public float <B>getValue</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setValue(float)"><!-- --></A><H3>
|
||||
setValue</H3>
|
||||
<PRE>
|
||||
public void <B>setValue</B>(float value)</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=2 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/PlotData.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="../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/PlotData.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotData.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
347
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/PlotDataSource.html
Executable file
|
|
@ -0,0 +1,347 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
PlotDataSource (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="PlotDataSource (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/PlotDataSource.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="../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/PlotDataSource.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotDataSource.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">
|
||||
org.zkforge.timeplot.data</FONT>
|
||||
<BR>
|
||||
Class PlotDataSource</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.data.PlotDataSource</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>PlotDataSource</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotDataSource.html#PlotDataSource()">PlotDataSource</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</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="../../../../org/zkforge/timeplot/data/PlotDataSource.html#getDataSourceColumn()">getDataSourceColumn</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotDataSource.html#getDataSourceUri()">getDataSourceUri</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/data/PlotDataSource.html#getSeparator()">getSeparator</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="../../../../org/zkforge/timeplot/data/PlotDataSource.html#setDataSourceColumn(int)">setDataSourceColumn</A></B>(int dataSourceColumn)</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="../../../../org/zkforge/timeplot/data/PlotDataSource.html#setDataSourceUri(java.lang.String)">setDataSourceUri</A></B>(java.lang.String dataSourceUri)</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="../../../../org/zkforge/timeplot/data/PlotDataSource.html#setSeparator(java.lang.String)">setSeparator</A></B>(java.lang.String separator)</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="PlotDataSource()"><!-- --></A><H3>
|
||||
PlotDataSource</H3>
|
||||
<PRE>
|
||||
public <B>PlotDataSource</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getDataSourceColumn()"><!-- --></A><H3>
|
||||
getDataSourceColumn</H3>
|
||||
<PRE>
|
||||
public int <B>getDataSourceColumn</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setDataSourceColumn(int)"><!-- --></A><H3>
|
||||
setDataSourceColumn</H3>
|
||||
<PRE>
|
||||
public void <B>setDataSourceColumn</B>(int dataSourceColumn)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getDataSourceUri()"><!-- --></A><H3>
|
||||
getDataSourceUri</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getDataSourceUri</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setDataSourceUri(java.lang.String)"><!-- --></A><H3>
|
||||
setDataSourceUri</H3>
|
||||
<PRE>
|
||||
public void <B>setDataSourceUri</B>(java.lang.String dataSourceUri)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getSeparator()"><!-- --></A><H3>
|
||||
getSeparator</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getSeparator</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setSeparator(java.lang.String)"><!-- --></A><H3>
|
||||
setSeparator</H3>
|
||||
<PRE>
|
||||
public void <B>setSeparator</B>(java.lang.String separator)</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=2 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/PlotDataSource.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="../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/PlotDataSource.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotDataSource.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
196
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/class-use/PlotData.html
Executable file
|
|
@ -0,0 +1,196 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.data.PlotData (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.data.PlotData (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><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?org/zkforge/timeplot/data/\class-usePlotData.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotData.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>org.zkforge.timeplot.data.PlotData</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> with parameters of type <A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#addPlotData(org.zkforge.timeplot.data.PlotData)">addPlotData</A></B>(<A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A> pd)</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>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#modifyPlotData(org.zkforge.timeplot.data.PlotData)">modifyPlotData</A></B>(<A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A> pd)</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>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#removePlotData(org.zkforge.timeplot.data.PlotData)">removePlotData</A></B>(<A HREF="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A> pd)</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=2 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="../../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><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?org/zkforge/timeplot/data/\class-usePlotData.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotData.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,196 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.data.PlotDataSource (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.data.PlotDataSource (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><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?org/zkforge/timeplot/data/\class-usePlotDataSource.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotDataSource.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>org.zkforge.timeplot.data.PlotDataSource</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> that return <A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#getPlotDataSource()">getPlotDataSource</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> with parameters of type <A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#setPlotDataSource(org.zkforge.timeplot.data.PlotDataSource)">setPlotDataSource</A></B>(<A HREF="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A> pds)</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=2 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="../../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><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?org/zkforge/timeplot/data/\class-usePlotDataSource.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PlotDataSource.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
34
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/package-frame.html
Executable file
|
|
@ -0,0 +1,34 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.data (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../org/zkforge/timeplot/data/package-summary.html" target="classFrame">org.zkforge.timeplot.data</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="PlotData.html" title="class in org.zkforge.timeplot.data" target="classFrame">PlotData</A>
|
||||
<BR>
|
||||
<A HREF="PlotDataSource.html" title="class in org.zkforge.timeplot.data" target="classFrame">PlotDataSource</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
161
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/package-summary.html
Executable file
|
|
@ -0,0 +1,161 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.data (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.data (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/package-summary.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 org.zkforge.timeplot.data
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data">PlotData</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<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=2 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="../../../../org/zkforge/timeplot/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/package-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
153
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/package-tree.html
Executable file
|
|
@ -0,0 +1,153 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.data Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.data Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/package-tree.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 org.zkforge.timeplot.data
|
||||
</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">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.data.<A HREF="../../../../org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><B>PlotData</B></A><LI TYPE="circle">org.zkforge.timeplot.data.<A HREF="../../../../org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><B>PlotDataSource</B></A></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=2 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="../../../../org/zkforge/timeplot/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/data/package-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
176
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/data/package-use.html
Executable file
|
|
@ -0,0 +1,176 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Package org.zkforge.timeplot.data (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package org.zkforge.timeplot.data (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?org/zkforge/timeplot/data/package-use.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>org.zkforge.timeplot.data</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../org/zkforge/timeplot/data/package-summary.html">org.zkforge.timeplot.data</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/data/package-summary.html">org.zkforge.timeplot.data</A> used by <A HREF="../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/data/class-use/PlotData.html#org.zkforge.timeplot"><B>PlotData</B></A></B>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/data/class-use/PlotDataSource.html#org.zkforge.timeplot"><B>PlotDataSource</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=2 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?org/zkforge/timeplot/data/package-use.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
654
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/DefaultTimeGeometry.html
Executable file
|
|
@ -0,0 +1,654 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
DefaultTimeGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="DefaultTimeGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/DefaultTimeGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultTimeGeometry.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">
|
||||
org.zkforge.timeplot.geometry</FONT>
|
||||
<BR>
|
||||
Class DefaultTimeGeometry</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.geometry.DefaultTimeGeometry</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>DefaultTimeGeometry</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#DefaultTimeGeometry()">DefaultTimeGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getAxisColor()">getAxisColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridColor()">getGridColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridLineWidth()">getGridLineWidth</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridStep()">getGridStep</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getGridStepRange()">getGridStepRange</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getMax()">getMax</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getMin()">getMin</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getTimeGeometryId()">getTimeGeometryId</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#getTimeValuePosition()">getTimeValuePosition</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></B>(java.lang.String axisColor)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></B>(java.lang.String axisLabelsPlacement)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridColor(java.lang.String)">setGridColor</A></B>(java.lang.String gridColor)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></B>(float gridLineWidth)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridStep(int)">setGridStep</A></B>(int gridStep)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setGridStepRange(int)">setGridStepRange</A></B>(int gridStepRange)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setMax(int)">setMax</A></B>(int max)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setMin(int)">setMin</A></B>(int min)</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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html#setTimeValuePosition(java.lang.String)">setTimeValuePosition</A></B>(java.lang.String timeValuePosition)</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="DefaultTimeGeometry()"><!-- --></A><H3>
|
||||
DefaultTimeGeometry</H3>
|
||||
<PRE>
|
||||
public <B>DefaultTimeGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getAxisColor()"><!-- --></A><H3>
|
||||
getAxisColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisColor()">getAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisColor(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisColor</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisColor</B>(java.lang.String axisColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisLabelsPlacement()"><!-- --></A><H3>
|
||||
getAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisLabelsPlacement</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisLabelsPlacement(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisLabelsPlacement</B>(java.lang.String axisLabelsPlacement)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridColor()"><!-- --></A><H3>
|
||||
getGridColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getGridColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridColor()">getGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridColor(java.lang.String)"><!-- --></A><H3>
|
||||
setGridColor</H3>
|
||||
<PRE>
|
||||
public void <B>setGridColor</B>(java.lang.String gridColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridColor(java.lang.String)">setGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridLineWidth()"><!-- --></A><H3>
|
||||
getGridLineWidth</H3>
|
||||
<PRE>
|
||||
public float <B>getGridLineWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridLineWidth()">getGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridLineWidth(float)"><!-- --></A><H3>
|
||||
setGridLineWidth</H3>
|
||||
<PRE>
|
||||
public void <B>setGridLineWidth</B>(float gridLineWidth)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridStep()"><!-- --></A><H3>
|
||||
getGridStep</H3>
|
||||
<PRE>
|
||||
public int <B>getGridStep</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStep()">getGridStep</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridStep(int)"><!-- --></A><H3>
|
||||
setGridStep</H3>
|
||||
<PRE>
|
||||
public void <B>setGridStep</B>(int gridStep)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStep(int)">setGridStep</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridStepRange()"><!-- --></A><H3>
|
||||
getGridStepRange</H3>
|
||||
<PRE>
|
||||
public int <B>getGridStepRange</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStepRange()">getGridStepRange</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridStepRange(int)"><!-- --></A><H3>
|
||||
setGridStepRange</H3>
|
||||
<PRE>
|
||||
public void <B>setGridStepRange</B>(int gridStepRange)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStepRange(int)">setGridStepRange</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMax()"><!-- --></A><H3>
|
||||
getMax</H3>
|
||||
<PRE>
|
||||
public int <B>getMax</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getMax()">getMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMax(int)"><!-- --></A><H3>
|
||||
setMax</H3>
|
||||
<PRE>
|
||||
public void <B>setMax</B>(int max)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setMax(int)">setMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMin()"><!-- --></A><H3>
|
||||
getMin</H3>
|
||||
<PRE>
|
||||
public int <B>getMin</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getMin()">getMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMin(int)"><!-- --></A><H3>
|
||||
setMin</H3>
|
||||
<PRE>
|
||||
public void <B>setMin</B>(int min)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setMin(int)">setMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getTimeValuePosition()"><!-- --></A><H3>
|
||||
getTimeValuePosition</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getTimeValuePosition</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeValuePosition()">getTimeValuePosition</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setTimeValuePosition(java.lang.String)"><!-- --></A><H3>
|
||||
setTimeValuePosition</H3>
|
||||
<PRE>
|
||||
public void <B>setTimeValuePosition</B>(java.lang.String timeValuePosition)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setTimeValuePosition(java.lang.String)">setTimeValuePosition</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getTimeGeometryId()"><!-- --></A><H3>
|
||||
getTimeGeometryId</H3>
|
||||
<PRE>
|
||||
public int <B>getTimeGeometryId</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeGeometryId()">getTimeGeometryId</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></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=2 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/DefaultTimeGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultTimeGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,694 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
DefaultValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="DefaultValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/DefaultValueGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/DefaultValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultValueGeometry.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">
|
||||
org.zkforge.timeplot.geometry</FONT>
|
||||
<BR>
|
||||
Class DefaultValueGeometry</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.geometry.DefaultValueGeometry</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>DefaultValueGeometry</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkforge.timeplot.geometry.ValueGeometry"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from interface org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#BOTTOM">BOTTOM</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#LEFT">LEFT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#RIGHT">RIGHT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#SHORT">SHORT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#TOP">TOP</A></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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#DefaultValueGeometry()">DefaultValueGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getAxisColor()">getAxisColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridColor()">getGridColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridLineWidth()">getGridLineWidth</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridShortSize()">getGridShortSize</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridSpacing()">getGridSpacing</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getGridType()">getGridType</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getMax()">getMax</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getMin()">getMin</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#getValueGeometryId()">getValueGeometryId</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></B>(java.lang.String axisColor)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></B>(java.lang.String axisLabelsPlacement)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridColor(java.lang.String)">setGridColor</A></B>(java.lang.String gridColor)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></B>(float gridLineWidth)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridShortSize(int)">setGridShortSize</A></B>(int gridShortSize)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridSpacing(int)">setGridSpacing</A></B>(int gridSpacing)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setGridType(java.lang.String)">setGridType</A></B>(java.lang.String gridType)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setMax(int)">setMax</A></B>(int max)</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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#setMin(int)">setMin</A></B>(int min)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html#toString()">toString</A></B>()</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="DefaultValueGeometry()"><!-- --></A><H3>
|
||||
DefaultValueGeometry</H3>
|
||||
<PRE>
|
||||
public <B>DefaultValueGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="toString()"><!-- --></A><H3>
|
||||
toString</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>toString</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisColor()"><!-- --></A><H3>
|
||||
getAxisColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisColor()">getAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisColor(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisColor</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisColor</B>(java.lang.String axisColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisLabelsPlacement()"><!-- --></A><H3>
|
||||
getAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisLabelsPlacement</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisLabelsPlacement(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisLabelsPlacement</B>(java.lang.String axisLabelsPlacement)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridColor()"><!-- --></A><H3>
|
||||
getGridColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getGridColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridColor()">getGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridColor(java.lang.String)"><!-- --></A><H3>
|
||||
setGridColor</H3>
|
||||
<PRE>
|
||||
public void <B>setGridColor</B>(java.lang.String gridColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridColor(java.lang.String)">setGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridLineWidth()"><!-- --></A><H3>
|
||||
getGridLineWidth</H3>
|
||||
<PRE>
|
||||
public float <B>getGridLineWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridLineWidth()">getGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridLineWidth(float)"><!-- --></A><H3>
|
||||
setGridLineWidth</H3>
|
||||
<PRE>
|
||||
public void <B>setGridLineWidth</B>(float gridLineWidth)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridShortSize()"><!-- --></A><H3>
|
||||
getGridShortSize</H3>
|
||||
<PRE>
|
||||
public int <B>getGridShortSize</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridShortSize()">getGridShortSize</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridShortSize(int)"><!-- --></A><H3>
|
||||
setGridShortSize</H3>
|
||||
<PRE>
|
||||
public void <B>setGridShortSize</B>(int gridShortSize)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridShortSize(int)">setGridShortSize</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridSpacing()"><!-- --></A><H3>
|
||||
getGridSpacing</H3>
|
||||
<PRE>
|
||||
public int <B>getGridSpacing</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridSpacing()">getGridSpacing</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridSpacing(int)"><!-- --></A><H3>
|
||||
setGridSpacing</H3>
|
||||
<PRE>
|
||||
public void <B>setGridSpacing</B>(int gridSpacing)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridSpacing(int)">setGridSpacing</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridType()"><!-- --></A><H3>
|
||||
getGridType</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getGridType</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridType()">getGridType</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridType(java.lang.String)"><!-- --></A><H3>
|
||||
setGridType</H3>
|
||||
<PRE>
|
||||
public void <B>setGridType</B>(java.lang.String gridType)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridType(java.lang.String)">setGridType</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMax()"><!-- --></A><H3>
|
||||
getMax</H3>
|
||||
<PRE>
|
||||
public int <B>getMax</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMax()">getMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMax(int)"><!-- --></A><H3>
|
||||
setMax</H3>
|
||||
<PRE>
|
||||
public void <B>setMax</B>(int max)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMax(int)">setMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMin()"><!-- --></A><H3>
|
||||
getMin</H3>
|
||||
<PRE>
|
||||
public int <B>getMin</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMin()">getMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMin(int)"><!-- --></A><H3>
|
||||
setMin</H3>
|
||||
<PRE>
|
||||
public void <B>setMin</B>(int min)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMin(int)">setMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getValueGeometryId()"><!-- --></A><H3>
|
||||
getValueGeometryId</H3>
|
||||
<PRE>
|
||||
public int <B>getValueGeometryId</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getValueGeometryId()">getValueGeometryId</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></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=2 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/DefaultValueGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/DefaultValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultValueGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,694 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
LogarithmicValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="LogarithmicValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/LogarithmicValueGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="LogarithmicValueGeometry.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">
|
||||
org.zkforge.timeplot.geometry</FONT>
|
||||
<BR>
|
||||
Class LogarithmicValueGeometry</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.geometry.LogarithmicValueGeometry</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>LogarithmicValueGeometry</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkforge.timeplot.geometry.ValueGeometry"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from interface org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#BOTTOM">BOTTOM</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#LEFT">LEFT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#RIGHT">RIGHT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#SHORT">SHORT</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#TOP">TOP</A></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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#LogarithmicValueGeometry()">LogarithmicValueGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getAxisColor()">getAxisColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridColor()">getGridColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridLineWidth()">getGridLineWidth</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridShortSize()">getGridShortSize</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridSpacing()">getGridSpacing</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getGridType()">getGridType</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getMax()">getMax</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getMin()">getMin</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#getValueGeometryId()">getValueGeometryId</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></B>(java.lang.String axisColor)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></B>(java.lang.String axisLabelsPlacement)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridColor(java.lang.String)">setGridColor</A></B>(java.lang.String gridColor)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></B>(float gridLineWidth)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridShortSize(int)">setGridShortSize</A></B>(int gridShortSize)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridSpacing(int)">setGridSpacing</A></B>(int gridSpacing)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setGridType(java.lang.String)">setGridType</A></B>(java.lang.String gridType)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setMax(int)">setMax</A></B>(int max)</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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#setMin(int)">setMin</A></B>(int min)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html#toString()">toString</A></B>()</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="LogarithmicValueGeometry()"><!-- --></A><H3>
|
||||
LogarithmicValueGeometry</H3>
|
||||
<PRE>
|
||||
public <B>LogarithmicValueGeometry</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="toString()"><!-- --></A><H3>
|
||||
toString</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>toString</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisColor()"><!-- --></A><H3>
|
||||
getAxisColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisColor()">getAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisColor(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisColor</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisColor</B>(java.lang.String axisColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisLabelsPlacement()"><!-- --></A><H3>
|
||||
getAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getAxisLabelsPlacement</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisLabelsPlacement(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
public void <B>setAxisLabelsPlacement</B>(java.lang.String axisLabelsPlacement)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridColor()"><!-- --></A><H3>
|
||||
getGridColor</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getGridColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridColor()">getGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridColor(java.lang.String)"><!-- --></A><H3>
|
||||
setGridColor</H3>
|
||||
<PRE>
|
||||
public void <B>setGridColor</B>(java.lang.String gridColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridColor(java.lang.String)">setGridColor</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridLineWidth()"><!-- --></A><H3>
|
||||
getGridLineWidth</H3>
|
||||
<PRE>
|
||||
public float <B>getGridLineWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridLineWidth()">getGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridLineWidth(float)"><!-- --></A><H3>
|
||||
setGridLineWidth</H3>
|
||||
<PRE>
|
||||
public void <B>setGridLineWidth</B>(float gridLineWidth)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridShortSize()"><!-- --></A><H3>
|
||||
getGridShortSize</H3>
|
||||
<PRE>
|
||||
public int <B>getGridShortSize</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridShortSize()">getGridShortSize</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridShortSize(int)"><!-- --></A><H3>
|
||||
setGridShortSize</H3>
|
||||
<PRE>
|
||||
public void <B>setGridShortSize</B>(int gridShortSize)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridShortSize(int)">setGridShortSize</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridSpacing()"><!-- --></A><H3>
|
||||
getGridSpacing</H3>
|
||||
<PRE>
|
||||
public int <B>getGridSpacing</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridSpacing()">getGridSpacing</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridSpacing(int)"><!-- --></A><H3>
|
||||
setGridSpacing</H3>
|
||||
<PRE>
|
||||
public void <B>setGridSpacing</B>(int gridSpacing)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridSpacing(int)">setGridSpacing</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridType()"><!-- --></A><H3>
|
||||
getGridType</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getGridType</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridType()">getGridType</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridType(java.lang.String)"><!-- --></A><H3>
|
||||
setGridType</H3>
|
||||
<PRE>
|
||||
public void <B>setGridType</B>(java.lang.String gridType)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridType(java.lang.String)">setGridType</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMax()"><!-- --></A><H3>
|
||||
getMax</H3>
|
||||
<PRE>
|
||||
public int <B>getMax</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMax()">getMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMax(int)"><!-- --></A><H3>
|
||||
setMax</H3>
|
||||
<PRE>
|
||||
public void <B>setMax</B>(int max)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMax(int)">setMax</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMin()"><!-- --></A><H3>
|
||||
getMin</H3>
|
||||
<PRE>
|
||||
public int <B>getMin</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMin()">getMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMin(int)"><!-- --></A><H3>
|
||||
setMin</H3>
|
||||
<PRE>
|
||||
public void <B>setMin</B>(int min)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMin(int)">setMin</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getValueGeometryId()"><!-- --></A><H3>
|
||||
getValueGeometryId</H3>
|
||||
<PRE>
|
||||
public int <B>getValueGeometryId</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getValueGeometryId()">getValueGeometryId</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></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=2 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/LogarithmicValueGeometry.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="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="LogarithmicValueGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
551
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/TimeGeometry.html
Executable file
|
|
@ -0,0 +1,551 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
TimeGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="TimeGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/TimeGeometry.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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/TimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeGeometry.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <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">
|
||||
org.zkforge.timeplot.geometry</FONT>
|
||||
<BR>
|
||||
Interface TimeGeometry</H2>
|
||||
<DL>
|
||||
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public interface <B>TimeGeometry</B></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisColor()">getAxisColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridColor()">getGridColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridLineWidth()">getGridLineWidth</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStep()">getGridStep</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getGridStepRange()">getGridStepRange</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getMax()">getMax</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getMin()">getMin</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeGeometryId()">getTimeGeometryId</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#getTimeValuePosition()">getTimeValuePosition</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></B>(java.lang.String axisColor)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></B>(java.lang.String axisLabelsPlacement)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridColor(java.lang.String)">setGridColor</A></B>(java.lang.String gridColor)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></B>(float gridLineWidth)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStep(int)">setGridStep</A></B>(int gridStep)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setGridStepRange(int)">setGridStepRange</A></B>(int gridStepRange)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setMax(int)">setMax</A></B>(int max)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setMin(int)">setMin</A></B>(int min)</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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html#setTimeValuePosition(java.lang.String)">setTimeValuePosition</A></B>(java.lang.String timeValuePosition)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getAxisColor()"><!-- --></A><H3>
|
||||
getAxisColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getAxisColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisColor(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisColor</H3>
|
||||
<PRE>
|
||||
void <B>setAxisColor</B>(java.lang.String axisColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisLabelsPlacement()"><!-- --></A><H3>
|
||||
getAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getAxisLabelsPlacement</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisLabelsPlacement(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
void <B>setAxisLabelsPlacement</B>(java.lang.String axisLabelsPlacement)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridColor()"><!-- --></A><H3>
|
||||
getGridColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getGridColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridColor(java.lang.String)"><!-- --></A><H3>
|
||||
setGridColor</H3>
|
||||
<PRE>
|
||||
void <B>setGridColor</B>(java.lang.String gridColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridLineWidth()"><!-- --></A><H3>
|
||||
getGridLineWidth</H3>
|
||||
<PRE>
|
||||
float <B>getGridLineWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridLineWidth(float)"><!-- --></A><H3>
|
||||
setGridLineWidth</H3>
|
||||
<PRE>
|
||||
void <B>setGridLineWidth</B>(float gridLineWidth)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridStep()"><!-- --></A><H3>
|
||||
getGridStep</H3>
|
||||
<PRE>
|
||||
int <B>getGridStep</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridStep(int)"><!-- --></A><H3>
|
||||
setGridStep</H3>
|
||||
<PRE>
|
||||
void <B>setGridStep</B>(int gridStep)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridStepRange()"><!-- --></A><H3>
|
||||
getGridStepRange</H3>
|
||||
<PRE>
|
||||
int <B>getGridStepRange</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridStepRange(int)"><!-- --></A><H3>
|
||||
setGridStepRange</H3>
|
||||
<PRE>
|
||||
void <B>setGridStepRange</B>(int gridStepRange)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMax()"><!-- --></A><H3>
|
||||
getMax</H3>
|
||||
<PRE>
|
||||
int <B>getMax</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMax(int)"><!-- --></A><H3>
|
||||
setMax</H3>
|
||||
<PRE>
|
||||
void <B>setMax</B>(int max)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMin()"><!-- --></A><H3>
|
||||
getMin</H3>
|
||||
<PRE>
|
||||
int <B>getMin</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMin(int)"><!-- --></A><H3>
|
||||
setMin</H3>
|
||||
<PRE>
|
||||
void <B>setMin</B>(int min)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getTimeValuePosition()"><!-- --></A><H3>
|
||||
getTimeValuePosition</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getTimeValuePosition</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setTimeValuePosition(java.lang.String)"><!-- --></A><H3>
|
||||
setTimeValuePosition</H3>
|
||||
<PRE>
|
||||
void <B>setTimeValuePosition</B>(java.lang.String timeValuePosition)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getTimeGeometryId()"><!-- --></A><H3>
|
||||
getTimeGeometryId</H3>
|
||||
<PRE>
|
||||
int <B>getTimeGeometryId</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=2 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/TimeGeometry.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="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/TimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeGeometry.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
663
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/ValueGeometry.html
Executable file
|
|
@ -0,0 +1,663 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
ValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="ValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/ValueGeometry.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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/ValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="ValueGeometry.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> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <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">
|
||||
org.zkforge.timeplot.geometry</FONT>
|
||||
<BR>
|
||||
Interface ValueGeometry</H2>
|
||||
<DL>
|
||||
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A>, <A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public interface <B>ValueGeometry</B></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>gwx</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#BOTTOM">BOTTOM</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#LEFT">LEFT</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#RIGHT">RIGHT</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#SHORT">SHORT</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#TOP">TOP</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisColor()">getAxisColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getAxisLabelsPlacement()">getAxisLabelsPlacement</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridColor()">getGridColor</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> float</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridLineWidth()">getGridLineWidth</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridShortSize()">getGridShortSize</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridSpacing()">getGridSpacing</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getGridType()">getGridType</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMax()">getMax</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getMin()">getMin</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#getValueGeometryId()">getValueGeometryId</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisColor(java.lang.String)">setAxisColor</A></B>(java.lang.String axisColor)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setAxisLabelsPlacement(java.lang.String)">setAxisLabelsPlacement</A></B>(java.lang.String axisLabelsPlacement)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridColor(java.lang.String)">setGridColor</A></B>(java.lang.String gridColor)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridLineWidth(float)">setGridLineWidth</A></B>(float gridLineWidth)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridShortSize(int)">setGridShortSize</A></B>(int gridShortSize)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridSpacing(int)">setGridSpacing</A></B>(int gridSpacing)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setGridType(java.lang.String)">setGridType</A></B>(java.lang.String gridType)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMax(int)">setMax</A></B>(int max)</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="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html#setMin(int)">setMin</A></B>(int min)</CODE>
|
||||
|
||||
<BR>
|
||||
</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Field Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="LEFT"><!-- --></A><H3>
|
||||
LEFT</H3>
|
||||
<PRE>
|
||||
static final java.lang.String <B>LEFT</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.zkforge.timeplot.geometry.ValueGeometry.LEFT">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="RIGHT"><!-- --></A><H3>
|
||||
RIGHT</H3>
|
||||
<PRE>
|
||||
static final java.lang.String <B>RIGHT</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.zkforge.timeplot.geometry.ValueGeometry.RIGHT">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="TOP"><!-- --></A><H3>
|
||||
TOP</H3>
|
||||
<PRE>
|
||||
static final java.lang.String <B>TOP</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.zkforge.timeplot.geometry.ValueGeometry.TOP">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="BOTTOM"><!-- --></A><H3>
|
||||
BOTTOM</H3>
|
||||
<PRE>
|
||||
static final java.lang.String <B>BOTTOM</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.zkforge.timeplot.geometry.ValueGeometry.BOTTOM">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="SHORT"><!-- --></A><H3>
|
||||
SHORT</H3>
|
||||
<PRE>
|
||||
static final java.lang.String <B>SHORT</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.zkforge.timeplot.geometry.ValueGeometry.SHORT">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getAxisColor()"><!-- --></A><H3>
|
||||
getAxisColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getAxisColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisColor(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisColor</H3>
|
||||
<PRE>
|
||||
void <B>setAxisColor</B>(java.lang.String axisColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getAxisLabelsPlacement()"><!-- --></A><H3>
|
||||
getAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getAxisLabelsPlacement</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setAxisLabelsPlacement(java.lang.String)"><!-- --></A><H3>
|
||||
setAxisLabelsPlacement</H3>
|
||||
<PRE>
|
||||
void <B>setAxisLabelsPlacement</B>(java.lang.String axisLabelsPlacement)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridColor()"><!-- --></A><H3>
|
||||
getGridColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getGridColor</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridColor(java.lang.String)"><!-- --></A><H3>
|
||||
setGridColor</H3>
|
||||
<PRE>
|
||||
void <B>setGridColor</B>(java.lang.String gridColor)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridLineWidth()"><!-- --></A><H3>
|
||||
getGridLineWidth</H3>
|
||||
<PRE>
|
||||
float <B>getGridLineWidth</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridLineWidth(float)"><!-- --></A><H3>
|
||||
setGridLineWidth</H3>
|
||||
<PRE>
|
||||
void <B>setGridLineWidth</B>(float gridLineWidth)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridShortSize()"><!-- --></A><H3>
|
||||
getGridShortSize</H3>
|
||||
<PRE>
|
||||
int <B>getGridShortSize</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridShortSize(int)"><!-- --></A><H3>
|
||||
setGridShortSize</H3>
|
||||
<PRE>
|
||||
void <B>setGridShortSize</B>(int gridShortSize)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridSpacing()"><!-- --></A><H3>
|
||||
getGridSpacing</H3>
|
||||
<PRE>
|
||||
int <B>getGridSpacing</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridSpacing(int)"><!-- --></A><H3>
|
||||
setGridSpacing</H3>
|
||||
<PRE>
|
||||
void <B>setGridSpacing</B>(int gridSpacing)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getGridType()"><!-- --></A><H3>
|
||||
getGridType</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getGridType</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setGridType(java.lang.String)"><!-- --></A><H3>
|
||||
setGridType</H3>
|
||||
<PRE>
|
||||
void <B>setGridType</B>(java.lang.String gridType)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMax()"><!-- --></A><H3>
|
||||
getMax</H3>
|
||||
<PRE>
|
||||
int <B>getMax</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMax(int)"><!-- --></A><H3>
|
||||
setMax</H3>
|
||||
<PRE>
|
||||
void <B>setMax</B>(int max)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getMin()"><!-- --></A><H3>
|
||||
getMin</H3>
|
||||
<PRE>
|
||||
int <B>getMin</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setMin(int)"><!-- --></A><H3>
|
||||
setMin</H3>
|
||||
<PRE>
|
||||
void <B>setMin</B>(int min)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getValueGeometryId()"><!-- --></A><H3>
|
||||
getValueGeometryId</H3>
|
||||
<PRE>
|
||||
int <B>getValueGeometryId</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=2 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/ValueGeometry.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="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/ValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="ValueGeometry.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> | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: <A HREF="#field_detail">FIELD</A> | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.geometry.DefaultTimeGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.geometry.DefaultTimeGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useDefaultTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultTimeGeometry.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>org.zkforge.timeplot.geometry.DefaultTimeGeometry</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.geometry.DefaultTimeGeometry
|
||||
<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=2 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="../../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useDefaultTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultTimeGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.geometry.DefaultValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.geometry.DefaultValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useDefaultValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultValueGeometry.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>org.zkforge.timeplot.geometry.DefaultValueGeometry</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.geometry.DefaultValueGeometry
|
||||
<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=2 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="../../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useDefaultValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DefaultValueGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.geometry.LogarithmicValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.geometry.LogarithmicValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useLogarithmicValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="LogarithmicValueGeometry.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>org.zkforge.timeplot.geometry.LogarithmicValueGeometry</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.geometry.LogarithmicValueGeometry
|
||||
<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=2 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="../../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useLogarithmicValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="LogarithmicValueGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,225 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Interface org.zkforge.timeplot.geometry.TimeGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Interface org.zkforge.timeplot.geometry.TimeGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeGeometry.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 Interface<br>org.zkforge.timeplot.geometry.TimeGeometry</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot.geometry"><B>org.zkforge.timeplot.geometry</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> that return <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#getTimeGeometry()">getTimeGeometry</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> with parameters of type <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#setTimeGeometry(org.zkforge.timeplot.geometry.TimeGeometry)">setTimeGeometry</A></B>(<A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A> timeGeometry)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.geometry"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A> in <A HREF="../../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A> that implement <A HREF="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></FONT></TH>
|
||||
</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="../../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</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=2 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="../../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useTimeGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,233 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Interface org.zkforge.timeplot.geometry.ValueGeometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Interface org.zkforge.timeplot.geometry.ValueGeometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="ValueGeometry.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 Interface<br>org.zkforge.timeplot.geometry.ValueGeometry</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot.geometry"><B>org.zkforge.timeplot.geometry</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> that return <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#getValueGeometry()">getValueGeometry</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> with parameters of type <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#setValueGeometry(org.zkforge.timeplot.geometry.ValueGeometry)">setValueGeometry</A></B>(<A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A> valueGeometry)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.geometry"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A> in <A HREF="../../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A> that implement <A HREF="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></FONT></TH>
|
||||
</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="../../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</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="../../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</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=2 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="../../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><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?org/zkforge/timeplot/geometry/\class-useValueGeometry.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="ValueGeometry.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
49
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/package-frame.html
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.geometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html" target="classFrame">org.zkforge.timeplot.geometry</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Interfaces</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry" target="classFrame"><I>TimeGeometry</I></A>
|
||||
<BR>
|
||||
<A HREF="ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry" target="classFrame"><I>ValueGeometry</I></A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">DefaultTimeGeometry</A>
|
||||
<BR>
|
||||
<A HREF="DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">DefaultValueGeometry</A>
|
||||
<BR>
|
||||
<A HREF="LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry" target="classFrame">LogarithmicValueGeometry</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
183
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/package-summary.html
Executable file
|
|
@ -0,0 +1,183 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.geometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.geometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/data/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/impl/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/package-summary.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 org.zkforge.timeplot.geometry
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Interface Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultTimeGeometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry">DefaultValueGeometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry">LogarithmicValueGeometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<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=2 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="../../../../org/zkforge/timeplot/data/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/impl/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/package-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
161
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/package-tree.html
Executable file
|
|
@ -0,0 +1,161 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.geometry Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.geometry Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/data/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/impl/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/package-tree.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 org.zkforge.timeplot.geometry
|
||||
</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">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultTimeGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultValueGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>LogarithmicValueGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>)
|
||||
</UL>
|
||||
</UL>
|
||||
<H2>
|
||||
Interface Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>TimeGeometry</B></A><LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="../../../../org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>ValueGeometry</B></A></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=2 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="../../../../org/zkforge/timeplot/data/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/impl/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/geometry/package-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
201
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/geometry/package-use.html
Executable file
|
|
@ -0,0 +1,201 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Package org.zkforge.timeplot.geometry (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package org.zkforge.timeplot.geometry (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?org/zkforge/timeplot/geometry/package-use.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>org.zkforge.timeplot.geometry</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot.geometry"><B>org.zkforge.timeplot.geometry</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A> used by <A HREF="../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/geometry/class-use/TimeGeometry.html#org.zkforge.timeplot"><B>TimeGeometry</B></A></B>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/geometry/class-use/ValueGeometry.html#org.zkforge.timeplot"><B>ValueGeometry</B></A></B>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.geometry"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A> used by <A HREF="../../../../org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/geometry/class-use/TimeGeometry.html#org.zkforge.timeplot.geometry"><B>TimeGeometry</B></A></B>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/geometry/class-use/ValueGeometry.html#org.zkforge.timeplot.geometry"><B>ValueGeometry</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=2 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?org/zkforge/timeplot/geometry/package-use.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
298
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/impl/TimeplotComponent.html
Executable file
|
|
@ -0,0 +1,298 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
TimeplotComponent (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="TimeplotComponent (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/TimeplotComponent.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?org/zkforge/timeplot/impl/TimeplotComponent.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeplotComponent.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_org.zkoss.zk.ui.HtmlBasedComponent">NESTED</A> | <A HREF="#fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">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">
|
||||
org.zkforge.timeplot.impl</FONT>
|
||||
<BR>
|
||||
Class TimeplotComponent</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">org.zkoss.zk.ui.AbstractComponent
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">org.zkoss.zk.ui.HtmlBasedComponent
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.impl.TimeplotComponent</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Cloneable, org.zkoss.zk.ui.Component, org.zkoss.zk.ui.sys.ComponentCtrl</DD>
|
||||
</DL>
|
||||
<DL>
|
||||
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A>, <A HREF="../../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>TimeplotComponent</B><DT>extends org.zkoss.zk.ui.HtmlBasedComponent</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.zkforge.timeplot.impl.TimeplotComponent">Serialized Form</A></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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Nested Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="nested_classes_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>org.zkoss.zk.ui.HtmlBasedComponent.ExtraCtrl</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>RS_NO_DISPLAY, RS_NO_HEIGHT, RS_NO_WIDTH</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_org.zkoss.zk.ui.Component"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from interface org.zkoss.zk.ui.Component</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>APPLICATION_SCOPE, COMPONENT_SCOPE, DESKTOP_SCOPE, PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, SPACE_SCOPE</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/impl/TimeplotComponent.html#TimeplotComponent()">TimeplotComponent</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class org.zkoss.zk.ui.HtmlBasedComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>focus, getDraggable, getDroppable, getHeight, getInnerAttrs, getLeft, getOuterAttrs, getRealSclass, getRealStyle, getRealStyleFlags, getSclass, getStyle, getTooltiptext, getTop, getWidth, getZIndex, newExtraCtrl, setClass, setDraggable, setDroppable, setHeight, setLeft, setSclass, setStyle, setTooltiptext, setTop, setWidth, setZIndex</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_org.zkoss.zk.ui.AbstractComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class org.zkoss.zk.ui.AbstractComponent</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>addAnnotation, addAnnotation, addEventHandler, addEventListener, addForward, addForward, addMoved, addSharedAnnotationMap, addSharedEventHandlerMap, appendAsapAttr, appendChild, applyProperties, clone, containsVariable, detach, equals, getAnnotatedProperties, getAnnotatedPropertiesBy, getAnnotation, getAnnotation, getAnnotations, getAnnotations, getAttribute, getAttribute, getAttributes, getAttributes, getChildren, getDefinition, getDesktop, getEventHandler, getEventHandlerNames, getExtraCtrl, getFellow, getFellowIfAny, getFirstChild, getId, getLastChild, getListenerIterator, getMold, getMoldURI, getNamespace, getNextSibling, getPage, getParent, getPreviousSibling, getPropagatee, getRoot, getSpaceOwner, getUuid, getVariable, insertBefore, invalidate, isAsapRequired, isChildable, isListenerAvailable, isVisible, onChildAdded, onChildRemoved, onDrawNewChild, onPageAttached, onPageDetached, onWrongValue, redraw, removeAttribute, removeAttribute, removeChild, removeEventListener, removeForward, removeForward, response, sessionDidActivate, sessionWillPassivate, setAttribute, setAttribute, setComponentDefinition, setId, setMold, setPage, setPageBefore, setParent, setVariable, setVisible, smartUpdate, smartUpdate, smartUpdate, smartUpdateDeferred, toString, unsetVariable</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="TimeplotComponent()"><!-- --></A><H3>
|
||||
TimeplotComponent</H3>
|
||||
<PRE>
|
||||
public <B>TimeplotComponent</B>()</PRE>
|
||||
<DL>
|
||||
</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=2 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/TimeplotComponent.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?org/zkforge/timeplot/impl/TimeplotComponent.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeplotComponent.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_org.zkoss.zk.ui.HtmlBasedComponent">NESTED</A> | <A HREF="#fields_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_org.zkoss.zk.ui.HtmlBasedComponent">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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,188 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.impl.TimeplotComponent (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.impl.TimeplotComponent (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><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?org/zkforge/timeplot/impl/\class-useTimeplotComponent.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeplotComponent.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>org.zkforge.timeplot.impl.TimeplotComponent</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</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="../../../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</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="../../../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</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=2 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="../../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><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?org/zkforge/timeplot/impl/\class-useTimeplotComponent.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="TimeplotComponent.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
32
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/impl/package-frame.html
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.impl (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../org/zkforge/timeplot/impl/package-summary.html" target="classFrame">org.zkforge.timeplot.impl</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="TimeplotComponent.html" title="class in org.zkforge.timeplot.impl" target="classFrame">TimeplotComponent</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
157
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/impl/package-summary.html
Executable file
|
|
@ -0,0 +1,157 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.impl (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.impl (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/geometry/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/impl/package-summary.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 org.zkforge.timeplot.impl
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<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=2 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="../../../../org/zkforge/timeplot/geometry/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/impl/package-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
158
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/impl/package-tree.html
Executable file
|
|
@ -0,0 +1,158 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.impl Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.impl Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/geometry/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/impl/package-tree.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 org.zkforge.timeplot.impl
|
||||
</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">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.AbstractComponent (implements org.zkoss.zk.ui.Component, org.zkoss.zk.ui.sys.ComponentCtrl, java.io.Serializable)
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.HtmlBasedComponent<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.impl.<A HREF="../../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><B>TimeplotComponent</B></A></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=2 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="../../../../org/zkforge/timeplot/geometry/package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/impl/package-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
170
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/impl/package-use.html
Executable file
|
|
@ -0,0 +1,170 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Package org.zkforge.timeplot.impl (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package org.zkforge.timeplot.impl (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?org/zkforge/timeplot/impl/package-use.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>org.zkforge.timeplot.impl</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../org/zkforge/timeplot/impl/package-summary.html">org.zkforge.timeplot.impl</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/impl/package-summary.html">org.zkforge.timeplot.impl</A> used by <A HREF="../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/impl/class-use/TimeplotComponent.html#org.zkforge.timeplot"><B>TimeplotComponent</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=2 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?org/zkforge/timeplot/impl/package-use.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
328
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/AverageOperator.html
Executable file
|
|
@ -0,0 +1,328 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
AverageOperator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="AverageOperator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/AverageOperator.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="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/AverageOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AverageOperator.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">
|
||||
org.zkforge.timeplot.operator</FONT>
|
||||
<BR>
|
||||
Class AverageOperator</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.operator.AverageOperator</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>AverageOperator</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>gwx</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html#AverageOperator()">AverageOperator</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html#getOperator()">getOperator</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html#getParams()">getParams</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</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="../../../../org/zkforge/timeplot/operator/AverageOperator.html#getSize()">getSize</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="../../../../org/zkforge/timeplot/operator/AverageOperator.html#setSize(int)">setSize</A></B>(int size)</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="AverageOperator()"><!-- --></A><H3>
|
||||
AverageOperator</H3>
|
||||
<PRE>
|
||||
public <B>AverageOperator</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getOperator()"><!-- --></A><H3>
|
||||
getOperator</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getOperator</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getOperator()">getOperator</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getParams()"><!-- --></A><H3>
|
||||
getParams</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getParams</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getParams()">getParams</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setSize(int)"><!-- --></A><H3>
|
||||
setSize</H3>
|
||||
<PRE>
|
||||
public void <B>setSize</B>(int size)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getSize()"><!-- --></A><H3>
|
||||
getSize</H3>
|
||||
<PRE>
|
||||
public int <B>getSize</B>()</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=2 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/AverageOperator.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="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/AverageOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AverageOperator.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
232
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/Operator.html
Executable file
|
|
@ -0,0 +1,232 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Operator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Operator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/Operator.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="../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/Operator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Operator.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <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">
|
||||
org.zkforge.timeplot.operator</FONT>
|
||||
<BR>
|
||||
Interface Operator</H2>
|
||||
<DL>
|
||||
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A>, <A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public interface <B>Operator</B></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>gwx</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getOperator()">getOperator</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getParams()">getParams</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getOperator()"><!-- --></A><H3>
|
||||
getOperator</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getOperator</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getParams()"><!-- --></A><H3>
|
||||
getParams</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>getParams</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=2 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/Operator.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="../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/Operator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Operator.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
284
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/SumOperator.html
Executable file
|
|
@ -0,0 +1,284 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
SumOperator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SumOperator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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/SumOperator.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="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/SumOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SumOperator.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">
|
||||
org.zkforge.timeplot.operator</FONT>
|
||||
<BR>
|
||||
Class SumOperator</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.zkforge.timeplot.operator.SumOperator</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>SumOperator</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>gwx</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html#SumOperator()">SumOperator</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">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html#getOperator()">getOperator</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html#getParams()">getParams</A></B>()</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">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="SumOperator()"><!-- --></A><H3>
|
||||
SumOperator</H3>
|
||||
<PRE>
|
||||
public <B>SumOperator</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">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getOperator()"><!-- --></A><H3>
|
||||
getOperator</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getOperator</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getOperator()">getOperator</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getParams()"><!-- --></A><H3>
|
||||
getParams</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>getParams</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html#getParams()">getParams</A></CODE> in interface <CODE><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></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=2 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/SumOperator.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="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/SumOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SumOperator.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.operator.AverageOperator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.operator.AverageOperator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useAverageOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AverageOperator.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>org.zkforge.timeplot.operator.AverageOperator</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.operator.AverageOperator
|
||||
<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=2 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="../../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useAverageOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="AverageOperator.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
233
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/class-use/Operator.html
Executable file
|
|
@ -0,0 +1,233 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Interface org.zkforge.timeplot.operator.Operator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Interface org.zkforge.timeplot.operator.Operator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Operator.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 Interface<br>org.zkforge.timeplot.operator.Operator</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot.operator"><B>org.zkforge.timeplot.operator</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A> in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> that return <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#getOperator()">getOperator</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A> with parameters of type <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B>Plotinfo.</B><B><A HREF="../../../../../org/zkforge/timeplot/Plotinfo.html#setOperator(org.zkforge.timeplot.operator.Operator)">setOperator</A></B>(<A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A> operator)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.operator"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Uses of <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A> in <A HREF="../../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A> that implement <A HREF="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></FONT></TH>
|
||||
</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="../../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</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="../../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</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=2 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="../../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Operator.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Class org.zkforge.timeplot.operator.SumOperator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Class org.zkforge.timeplot.operator.SumOperator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useSumOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SumOperator.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>org.zkforge.timeplot.operator.SumOperator</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot.operator.SumOperator
|
||||
<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=2 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="../../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><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?org/zkforge/timeplot/operator/\class-useSumOperator.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SumOperator.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
45
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/package-frame.html
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.operator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html" target="classFrame">org.zkforge.timeplot.operator</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Interfaces</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="Operator.html" title="interface in org.zkforge.timeplot.operator" target="classFrame"><I>Operator</I></A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="AverageOperator.html" title="class in org.zkforge.timeplot.operator" target="classFrame">AverageOperator</A>
|
||||
<BR>
|
||||
<A HREF="SumOperator.html" title="class in org.zkforge.timeplot.operator" target="classFrame">SumOperator</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
175
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/package-summary.html
Executable file
|
|
@ -0,0 +1,175 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.operator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.operator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/impl/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/package-summary.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 org.zkforge.timeplot.operator
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Interface Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator">AverageOperator</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator">SumOperator</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<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=2 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="../../../../org/zkforge/timeplot/impl/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/package-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
160
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/package-tree.html
Executable file
|
|
@ -0,0 +1,160 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot.operator Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot.operator Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../../org/zkforge/timeplot/impl/package-tree.html"><B>PREV</B></A>
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/package-tree.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 org.zkforge.timeplot.operator
|
||||
</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">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="../../../../org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><B>AverageOperator</B></A> (implements org.zkforge.timeplot.operator.<A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="../../../../org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><B>SumOperator</B></A> (implements org.zkforge.timeplot.operator.<A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>)
|
||||
</UL>
|
||||
</UL>
|
||||
<H2>
|
||||
Interface Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="../../../../org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>Operator</B></A></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=2 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="../../../../org/zkforge/timeplot/impl/package-tree.html"><B>PREV</B></A>
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?org/zkforge/timeplot/operator/package-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
189
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/operator/package-use.html
Executable file
|
|
@ -0,0 +1,189 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Package org.zkforge.timeplot.operator (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package org.zkforge.timeplot.operator (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?org/zkforge/timeplot/operator/package-use.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>org.zkforge.timeplot.operator</B></H2>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Packages that use <A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot"><B>org.zkforge.timeplot</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><A HREF="#org.zkforge.timeplot.operator"><B>org.zkforge.timeplot.operator</B></A></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A> used by <A HREF="../../../../org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/operator/class-use/Operator.html#org.zkforge.timeplot"><B>Operator</B></A></B>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.operator"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
Classes in <A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A> used by <A HREF="../../../../org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</A></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><B><A HREF="../../../../org/zkforge/timeplot/operator/class-use/Operator.html#org.zkforge.timeplot.operator"><B>Operator</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=2 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?org/zkforge/timeplot/operator/package-use.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
36
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/package-frame.html
Executable file
|
|
@ -0,0 +1,36 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../org/zkforge/timeplot/package-summary.html" target="classFrame">org.zkforge.timeplot</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="Plotinfo.html" title="class in org.zkforge.timeplot" target="classFrame">Plotinfo</A>
|
||||
<BR>
|
||||
<A HREF="Timeplot.html" title="class in org.zkforge.timeplot" target="classFrame">Timeplot</A>
|
||||
<BR>
|
||||
<A HREF="Version.html" title="class in org.zkforge.timeplot" target="classFrame">Version</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
165
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/package-summary.html
Executable file
|
|
@ -0,0 +1,165 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../org/zkforge/timeplot/data/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/package-summary.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 org.zkforge.timeplot
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">Plotinfo</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">Timeplot</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot">Version</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<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=2 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="../../../org/zkforge/timeplot/data/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/package-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
160
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/package-tree.html
Executable file
|
|
@ -0,0 +1,160 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
org.zkforge.timeplot Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="org.zkforge.timeplot Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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="../../../org/zkforge/timeplot/data/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/package-tree.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 org.zkforge.timeplot
|
||||
</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">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.AbstractComponent (implements org.zkoss.zk.ui.Component, org.zkoss.zk.ui.sys.ComponentCtrl, java.io.Serializable)
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.HtmlBasedComponent<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.impl.<A HREF="../../../org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><B>TimeplotComponent</B></A><UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.<A HREF="../../../org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><B>Plotinfo</B></A><LI TYPE="circle">org.zkforge.timeplot.<A HREF="../../../org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><B>Timeplot</B></A></UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.<A HREF="../../../org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><B>Version</B></A></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=2 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="../../../org/zkforge/timeplot/data/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../index.html?org/zkforge/timeplot/package-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
144
zk-Timeplot-1.0_2/javadoc/org/zkforge/timeplot/package-use.html
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Uses of Package org.zkforge.timeplot (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Uses of Package org.zkforge.timeplot (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?org/zkforge/timeplot/package-use.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>org.zkforge.timeplot</B></H2>
|
||||
</CENTER>
|
||||
No usage of org.zkforge.timeplot
|
||||
<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=2 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?org/zkforge/timeplot/package-use.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
50
zk-Timeplot-1.0_2/javadoc/overview-frame.html
Executable file
|
|
@ -0,0 +1,50 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Overview List (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TH ALIGN="left" NOWRAP><FONT size="+1" CLASS="FrameTitleFont">
|
||||
<B></B></FONT></TH>
|
||||
</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="org/zkforge/timeplot/package-frame.html" target="packageFrame">org.zkforge.timeplot</A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="org/zkforge/timeplot/data/package-frame.html" target="packageFrame">org.zkforge.timeplot.data</A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="org/zkforge/timeplot/geometry/package-frame.html" target="packageFrame">org.zkforge.timeplot.geometry</A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="org/zkforge/timeplot/impl/package-frame.html" target="packageFrame">org.zkforge.timeplot.impl</A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="org/zkforge/timeplot/operator/package-frame.html" target="packageFrame">org.zkforge.timeplot.operator</A></FONT>
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
172
zk-Timeplot-1.0_2/javadoc/overview-summary.html
Executable file
|
|
@ -0,0 +1,172 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Overview (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Overview (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?overview-summary.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>
|
||||
timeplotz 1.0_2 API
|
||||
</H1>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Packages</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="org/zkforge/timeplot/package-summary.html">org.zkforge.timeplot</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="org/zkforge/timeplot/data/package-summary.html">org.zkforge.timeplot.data</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="org/zkforge/timeplot/geometry/package-summary.html">org.zkforge.timeplot.geometry</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="org/zkforge/timeplot/impl/package-summary.html">org.zkforge.timeplot.impl</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="org/zkforge/timeplot/operator/package-summary.html">org.zkforge.timeplot.operator</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=2 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?overview-summary.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
169
zk-Timeplot-1.0_2/javadoc/overview-tree.html
Executable file
|
|
@ -0,0 +1,169 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Class Hierarchy (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Class Hierarchy (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?overview-tree.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="org/zkforge/timeplot/package-tree.html">org.zkforge.timeplot</A>, <A HREF="org/zkforge/timeplot/data/package-tree.html">org.zkforge.timeplot.data</A>, <A HREF="org/zkforge/timeplot/geometry/package-tree.html">org.zkforge.timeplot.geometry</A>, <A HREF="org/zkforge/timeplot/impl/package-tree.html">org.zkforge.timeplot.impl</A>, <A HREF="org/zkforge/timeplot/operator/package-tree.html">org.zkforge.timeplot.operator</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.AbstractComponent (implements org.zkoss.zk.ui.Component, org.zkoss.zk.ui.sys.ComponentCtrl, java.io.Serializable)
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkoss.zk.ui.HtmlBasedComponent<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.impl.<A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl"><B>TimeplotComponent</B></A><UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.<A HREF="org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot"><B>Plotinfo</B></A><LI TYPE="circle">org.zkforge.timeplot.<A HREF="org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot"><B>Timeplot</B></A></UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="org/zkforge/timeplot/operator/AverageOperator.html" title="class in org.zkforge.timeplot.operator"><B>AverageOperator</B></A> (implements org.zkforge.timeplot.operator.<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/DefaultTimeGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultTimeGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/DefaultValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>DefaultValueGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/LogarithmicValueGeometry.html" title="class in org.zkforge.timeplot.geometry"><B>LogarithmicValueGeometry</B></A> (implements org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.data.<A HREF="org/zkforge/timeplot/data/PlotData.html" title="class in org.zkforge.timeplot.data"><B>PlotData</B></A><LI TYPE="circle">org.zkforge.timeplot.data.<A HREF="org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data"><B>PlotDataSource</B></A><LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="org/zkforge/timeplot/operator/SumOperator.html" title="class in org.zkforge.timeplot.operator"><B>SumOperator</B></A> (implements org.zkforge.timeplot.operator.<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A>)
|
||||
<LI TYPE="circle">org.zkforge.timeplot.<A HREF="org/zkforge/timeplot/Version.html" title="class in org.zkforge.timeplot"><B>Version</B></A></UL>
|
||||
</UL>
|
||||
<H2>
|
||||
Interface Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">org.zkforge.timeplot.operator.<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator"><B>Operator</B></A><LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>TimeGeometry</B></A><LI TYPE="circle">org.zkforge.timeplot.geometry.<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry"><B>ValueGeometry</B></A></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=2 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?overview-tree.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
5
zk-Timeplot-1.0_2/javadoc/package-list
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
org.zkforge.timeplot
|
||||
org.zkforge.timeplot.data
|
||||
org.zkforge.timeplot.geometry
|
||||
org.zkforge.timeplot.impl
|
||||
org.zkforge.timeplot.operator
|
||||
BIN
zk-Timeplot-1.0_2/javadoc/resources/inherit.gif
Executable file
|
After Width: | Height: | Size: 57 B |
405
zk-Timeplot-1.0_2/javadoc/serialized-form.html
Executable file
|
|
@ -0,0 +1,405 @@
|
|||
<!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.6.0_07) on Mon Oct 27 11:44:37 CST 2008 -->
|
||||
<TITLE>
|
||||
Serialized Form (timeplotz 1.0_2 API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2008-10-27">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Serialized Form (timeplotz 1.0_2 API)";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= 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=2 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?serialized-form.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="serialized-form.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>
|
||||
Serialized Form</H1>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="center"><FONT SIZE="+2">
|
||||
<B>Package</B> <B>org.zkforge.timeplot</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.Plotinfo"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class <A HREF="org/zkforge/timeplot/Plotinfo.html" title="class in org.zkforge.timeplot">org.zkforge.timeplot.Plotinfo</A> extends <A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A> implements Serializable</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="serializedForm"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Serialized Fields</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<H3>
|
||||
_dataModel</H3>
|
||||
<PRE>
|
||||
org.zkoss.zul.ListModel <B>_dataModel</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_dataList</H3>
|
||||
<PRE>
|
||||
java.util.ArrayList <B>_dataList</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_eventModel</H3>
|
||||
<PRE>
|
||||
org.zkoss.zul.ListModel <B>_eventModel</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_eventList</H3>
|
||||
<PRE>
|
||||
java.util.ArrayList <B>_eventList</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
fillColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>fillColor</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
dotColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>dotColor</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
lineColor</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>lineColor</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
lineWidth</H3>
|
||||
<PRE>
|
||||
float <B>lineWidth</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
eventLineWidth</H3>
|
||||
<PRE>
|
||||
float <B>eventLineWidth</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
dotRadius</H3>
|
||||
<PRE>
|
||||
float <B>dotRadius</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
showValues</H3>
|
||||
<PRE>
|
||||
boolean <B>showValues</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
roundValues</H3>
|
||||
<PRE>
|
||||
boolean <B>roundValues</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
valuesOpacity</H3>
|
||||
<PRE>
|
||||
int <B>valuesOpacity</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
bubbleWidth</H3>
|
||||
<PRE>
|
||||
int <B>bubbleWidth</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
bubbleHeight</H3>
|
||||
<PRE>
|
||||
int <B>bubbleHeight</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
pds</H3>
|
||||
<PRE>
|
||||
<A HREF="org/zkforge/timeplot/data/PlotDataSource.html" title="class in org.zkforge.timeplot.data">PlotDataSource</A> <B>pds</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
operator</H3>
|
||||
<PRE>
|
||||
<A HREF="org/zkforge/timeplot/operator/Operator.html" title="interface in org.zkforge.timeplot.operator">Operator</A> <B>operator</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
eventSourceUri</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>eventSourceUri</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_valueGeometry</H3>
|
||||
<PRE>
|
||||
<A HREF="org/zkforge/timeplot/geometry/ValueGeometry.html" title="interface in org.zkforge.timeplot.geometry">ValueGeometry</A> <B>_valueGeometry</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_timeGeometry</H3>
|
||||
<PRE>
|
||||
<A HREF="org/zkforge/timeplot/geometry/TimeGeometry.html" title="interface in org.zkforge.timeplot.geometry">TimeGeometry</A> <B>_timeGeometry</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.Timeplot"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class <A HREF="org/zkforge/timeplot/Timeplot.html" title="class in org.zkforge.timeplot">org.zkforge.timeplot.Timeplot</A> extends <A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">TimeplotComponent</A> implements Serializable</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="serializedForm"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Serialized Fields</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<H3>
|
||||
_height</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>_height</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
<H3>
|
||||
_width</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>_width</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
</DL>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="center"><FONT SIZE="+2">
|
||||
<B>Package</B> <B>org.zkforge.timeplot.impl</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<A NAME="org.zkforge.timeplot.impl.TimeplotComponent"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class <A HREF="org/zkforge/timeplot/impl/TimeplotComponent.html" title="class in org.zkforge.timeplot.impl">org.zkforge.timeplot.impl.TimeplotComponent</A> extends org.zkoss.zk.ui.HtmlBasedComponent implements Serializable</B></FONT></TH>
|
||||
</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=2 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?serialized-form.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="serialized-form.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>
|
||||
Copyright © 2005-2007 Potix Corporation. All Rights Reserved.
|
||||
</BODY>
|
||||
</HTML>
|
||||
29
zk-Timeplot-1.0_2/javadoc/stylesheet.css
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
/* Javadoc style sheet */
|
||||
|
||||
/* Define colors, fonts and other style attributes here to override the defaults */
|
||||
|
||||
/* Page background color */
|
||||
body { background-color: #FFFFFF; color:#000000 }
|
||||
|
||||
/* Headings */
|
||||
h1 { font-size: 145% }
|
||||
|
||||
/* Table colors */
|
||||
.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */
|
||||
.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */
|
||||
.TableRowColor { background: #FFFFFF; color:#000000 } /* White */
|
||||
|
||||
/* Font used in left-hand frame lists */
|
||||
.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
||||
|
||||
/* Navigation bar fonts and colors */
|
||||
.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */
|
||||
.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */
|
||||
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
|
||||
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
|
||||
|
||||
.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
|
||||
|
||||
6
zk-Timeplot-1.0_2/timeplotz/classpath
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
../dist/lib/zcommon.jar
|
||||
../dist/lib/zweb.jar
|
||||
../dist/lib/zk.jar
|
||||
../dist/lib/zul.jar
|
||||
../dist/lib/timelinez.jar
|
||||
../dist/lib/ext/json_simple.jar
|
||||
2
zk-Timeplot-1.0_2/timeplotz/deploy
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
lib
|
||||
zipjs=web/js
|
||||
1
zk-Timeplot-1.0_2/timeplotz/format
Executable file
|
|
@ -0,0 +1 @@
|
|||
jar
|
||||
49
zk-Timeplot-1.0_2/timeplotz/pom.xml
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.zkoss.zkforge</groupId>
|
||||
<artifactId>timeplotz</artifactId>
|
||||
<version>{version}</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>The Timeplot Component for ZK</name>
|
||||
<url>http://www.zkoss.org</url>
|
||||
<description>The Timeplot Component for ZK 2.2.0 or later</description>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU General Public License, Version 2.0</name>
|
||||
<url>http://www.gnu.org/licenses/gpl.html</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<url>http://zkforge.svn.sourceforge.net/viewvc/zkforge/trunk/timeplotz</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.zkoss.common</groupId>
|
||||
<artifactId>zcommon</artifactId>
|
||||
<version>2.2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.zkoss.common</groupId>
|
||||
<artifactId>zweb</artifactId>
|
||||
<version>2.2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.zkoss.zk</groupId>
|
||||
<artifactId>zk</artifactId>
|
||||
<version>2.2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.zkoss.zk</groupId>
|
||||
<artifactId>zul</artifactId>
|
||||
<version>2.2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.zkoss.zkforge.timeline</groupId>
|
||||
<artifactId>timelinez</artifactId>
|
||||
<version>1.2_1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
69
zk-Timeplot-1.0_2/timeplotz/src/archive/metainfo/zk/lang-addon.xml
Executable file
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- lang-addon.xml
|
||||
Purpose:
|
||||
|
||||
Description:
|
||||
|
||||
History:
|
||||
2007-9-11, Created by Gu WeiXing
|
||||
|
||||
Copyright (C) 2005 Potix Corporation. All Rights Reserved.
|
||||
-->
|
||||
|
||||
<language-addon>
|
||||
<!-- The name of this addon. It must be unique -->
|
||||
<addon-name>timeplot</addon-name>
|
||||
<!-- Specifies what other addon this depends
|
||||
<depends></depends>
|
||||
-->
|
||||
|
||||
<!-- Which language this addon will be added to -->
|
||||
<language-name>xul/html</language-name>
|
||||
|
||||
<version>
|
||||
<version-class>org.zkforge.timeplot.Version</version-class>
|
||||
<version-uid>1.0_2</version-uid>
|
||||
<zk-version>3.0.8</zk-version><!-- or later -->
|
||||
</version>
|
||||
|
||||
<!-- [Optional, Multiple] Define a JavaScript module.
|
||||
Change the version if JS files are modified, such that
|
||||
browsers will reload them. -->
|
||||
<javascript-module name="timeplotz.timeplot" version="1.0_2" />
|
||||
<!--
|
||||
<javascript
|
||||
src="http://static.simile.mit.edu/timeplot/api/1.0/timeplot-api.js"
|
||||
charset="UTF-8" />
|
||||
|
||||
-->
|
||||
<!-- The higher the number, the earlier this addon is loaded.
|
||||
Default: 0
|
||||
<priority>0</priority>
|
||||
-->
|
||||
|
||||
<stylesheet href="~./js/ext/timeplot/api/styles/timeplot-bundle.css"
|
||||
type="text/css" />
|
||||
|
||||
<zscript>import org.zkforge.timeplot.*;</zscript>
|
||||
|
||||
<component>
|
||||
<component-name>timeplot</component-name>
|
||||
<component-class>org.zkforge.timeplot.Timeplot</component-class>
|
||||
<mold>
|
||||
<mold-name>default</mold-name>
|
||||
<mold-uri>~./timeplot/timeplot.dsp</mold-uri>
|
||||
</mold>
|
||||
</component>
|
||||
|
||||
|
||||
<component>
|
||||
<component-name>plotinfo</component-name>
|
||||
<component-class>org.zkforge.timeplot.Plotinfo</component-class>
|
||||
<mold>
|
||||
<mold-name>default</mold-name>
|
||||
<mold-uri>~./timeplot/plotinfo.dsp</mold-uri>
|
||||
</mold>
|
||||
</component>
|
||||
|
||||
</language-addon>
|
||||
|
After Width: | Height: | Size: 601 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 754 B |
|
After Width: | Height: | Size: 803 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 880 B |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 941 B |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 793 B |
|
After Width: | Height: | Size: 560 B |
|
After Width: | Height: | Size: 676 B |
|
After Width: | Height: | Size: 905 B |