diff --git a/.gitattributes b/.gitattributes index 6fc8c55cf00ce968bebac4076834097b58dbe652..13c9fdad05f55ca5a06f5e136315ad176c3888e0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1197,10 +1197,13 @@ RTCP/Storage/src/RTStorage_main.cc -text RTCP/Storage/src/Storage.machinefile -text SAS/OTB/MoM-OTDB-adapter/.cvsignore -text SAS/OTB/MoM-OTDB-adapter/config/config.xml -text -SAS/OTB/MoM-OTDB-adapter/dist/.cvsignore -text -SAS/OTB/MoM-OTDB-adapter/dist/mom-otdb-adapter.jar -text -SAS/OTB/MoM-OTDB-adapter/doc/package-list -text svneol=native#application/octet-stream -SAS/OTB/MoM-OTDB-adapter/doc/resources/inherit.gif -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-otdb.xml -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-stub.xml -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/log4j.properties -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-keystore.jks -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-trusted-keystore.jks -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter.cer -text +SAS/OTB/MoM-OTDB-adapter/dist-sources/mom-otdb-adapter.bat -text SAS/OTB/MoM-OTDB-adapter/examples/mom-otdb-adapter-keystore.jks -text SAS/OTB/MoM-OTDB-adapter/examples/mom-otdb-adapter-trusted-keystore.jks -text SAS/OTB/MoM-OTDB-adapter/examples/mom-otdb-adapter.cer -text @@ -1239,8 +1242,6 @@ SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/StubRepos SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServer.java -text SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2HttpRequestHandler.java -text SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/util/XMLConstants.java -text -SAS/OTB/MoM-OTDB-adapter/test/keystore-client.jks -text -SAS/OTB/MoM-OTDB-adapter/test/keystore-server.jks -text SAS/OTB/MoM-OTDB-adapter/test/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepositoryTest.java -text SAS/OTB/MoM-OTDB-adapter/test/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Client.java -text SAS/OTB/MoM-OTDB-adapter/test/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServerTest.java -text diff --git a/.gitignore b/.gitignore index aa0e53f35f815f25cb8de428e8c7c33c098bb47a..4aa23f251b5781d11d54a5213ab3ab242c0ccb97 100644 --- a/.gitignore +++ b/.gitignore @@ -259,7 +259,6 @@ RTCP/Storage/Makefile.common RTCP/Storage/autoconf_share RTCP/Storage/lofarconf SAS/OTB/MoM-OTDB-adapter/bin -SAS/OTB/MoM-OTDB-adapter/dist/tasks SAS/OTB/MoM-OTDB-adapter/tasks SAS/OTB/jOTDB2/Makefile.common SAS/OTB/jOTDB2/autoconf_share diff --git a/SAS/OTB/MoM-OTDB-adapter/build/build.xml b/SAS/OTB/MoM-OTDB-adapter/build/build.xml index 8b44c9ebc89c9f4a33a028a6aa487381e8515baa..0be3fe6e3e10e18a5a6619bc9d199a872d97c23a 100644 --- a/SAS/OTB/MoM-OTDB-adapter/build/build.xml +++ b/SAS/OTB/MoM-OTDB-adapter/build/build.xml @@ -1,62 +1,76 @@ <?xml version = '1.0' encoding = 'windows-1252'?> -<project name="ant" default="package" basedir="."> - - <property name="buildDir" value="build"/> - <property name="projectDir" value=".."/> - <property name="libDir" value="${projectDir}/lib"/> - <property name="sharedLibDir" value="${projectDir}/sharedlib"/> - <property name="srcDir" value="${projectDir}/src"/> - <property name="classesDir" value="${buildDir}/classes"/> - <property name="jarFile" value="${buildDir}/mom-otdb-adapter.jar"/> - <property name="manifestFile" value="${projectDir}/META-INF/MANIFEST.MF"/> - <property name="destinationDir" value="${projectDir}/dist"/> - <path id="classpath"> - <fileset dir="${libDir}"> - <include name="*.jar"/> - </fileset> - <fileset dir="${sharedLibDir}"> - <include name="*.jar"/> - </fileset> - </path> - - - <target name="init"> - <tstamp> - <format property="TIMEDATE" pattern="hh:mm d-MM-yyyy"/> - </tstamp> - <echo message="Current time and date = ${TIMEDATE}"/> - </target> - - <target name="prepare" depends="init"> - <delete dir="${buildDir}"/> - <mkdir dir="${buildDir}"/> - <mkdir dir="${classesDir}"/> - <mkdir dir="${destinationDir}"/> - </target> - - - <target name="compile" depends="prepare"> - <javac - srcdir="${srcDir}" - destdir="${classesDir}" - debug="on" - excludes="nl/astron/lofar/odtb/mom2otdbadapter/test/**"> - <classpath refid="classpath" /> - </javac> - <copy todir="${classesDir}"> - <fileset dir="${srcDir}"> - <exclude name="**/*.java"/> - </fileset> - </copy> - </target> - - <target name="package" depends="compile"> - <jar jarfile="${jarFile}" manifest="${manifestFile}"> - <fileset dir="${classesDir}"> - </fileset> - </jar> - <copy file="${jarFile}" todir="${destinationDir}"/> - <delete dir="${buildDir}"/> - </target> +<project name="ant" default="jar" basedir="."> + + <property name="projectDir" value=".." /> + <property name="buildDir" value="${projectDir}/build" /> + <property name="destinationDir" value="${buildDir}/dist" /> + <property name="libDir" value="${destinationDir}/lib" /> + <property name="srcDir" value="${projectDir}/src" /> + <property name="classesDir" value="${destinationDir}/classes" /> + <property name="jarFile" value="${destinationDir}/mom-otdb-adapter.jar" /> + + <property name="main.class" value="nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter" /> + + <path id="classpath"> + <fileset dir="${libDir}"> + <include name="*.jar" /> + </fileset> + </path> + + + <target name="init"> + <tstamp> + <format property="TIMEDATE" pattern="hh:mm d-MM-yyyy" /> + </tstamp> + <echo message="Current time and date = ${TIMEDATE}" /> + </target> + + <target name="prepare" depends="init"> + <delete dir="${destinationDir}" /> + <mkdir dir="${destinationDir}" /> + <mkdir dir="${libDir}" /> + <mkdir dir="${classesDir}" /> + <mkdir dir="${destinationDir}/logs" /> + <copy todir="${libDir}"> + <fileset dir="${projectDir}/lib"> + <include name="*.jar" /> + </fileset> + <fileset dir="${projectDir}/sharedlib"> + <include name="*.jar" /> + </fileset> + </copy> + <copy todir="${destinationDir}"> + <fileset dir="${projectDir}/dist-sources"/> + </copy> + </target> + + + <target name="compile" depends="prepare"> + <javac srcdir="${srcDir}" destdir="${classesDir}" debug="on" excludes="test/**"> + <classpath refid="classpath" /> + </javac> + <copy todir="${classesDir}"> + <fileset dir="${srcDir}"> + <exclude name="**/*.java" /> + </fileset> + </copy> + </target> + + <target name="jar" depends="compile"> + <manifestclasspath property="jar.classpath" jarfile="${jarFile}"> + <classpath refid="classpath" /> + </manifestclasspath> + <jar destfile="${jarFile}" basedir="${classesDir}"> + <manifest> + <attribute name="Main-Class" value="${main.class}" /> + <attribute name="Built-By" value="${user.name}" /> + <attribute name="Class-Path" value="${jar.classpath}" /> + </manifest> + </jar> + <delete dir="${classesDir}" /> + </target> + </project> + + diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-otdb.xml b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-otdb.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f7bcd50da4de2ee029b24bfa1809559eb03f996 --- /dev/null +++ b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-otdb.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<config:config xmlns:config="http://www.astron.nl/MoM-OTDB-adapter" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.astron.nl/MoM-OTDB-adapter ../src/config.xsd "> + <config:mom2> + <config:username>bastiaan</config:username> + <config:password>bastiaan</config:password> + <config:authurl>http://localhost:8080/useradministration</config:authurl> + <config:mom2-import-url>http://localhost:8080/mom2lofar/interface/importXML2.do</config:mom2-import-url> + <config:mom2-schemas-url>http://localhost:8080/mom2lofar/schemas/</config:mom2-schemas-url> + </config:mom2> + <config:otdb> + <config:interval>3</config:interval> + <config:uvObservationTemplateId>5001</config:uvObservationTemplateId> + <config:rmihost>lofar17</config:rmihost> + <config:rmiport>10500</config:rmiport> + </config:otdb> + <config:adapter> + <config:httpport>8082</config:httpport> + <config:keystore-location>./keystores/mom-otdb-adapter-keystore.jks</config:keystore-location> + <config:keystore-password>adapter</config:keystore-password> + <config:trusted-keystore-location>./keystores/mom-otdb-adapter-trusted-keystore.jks</config:trusted-keystore-location> + <config:trusted-keystore-password>adapter-trusted</config:trusted-keystore-password> + </config:adapter> +</config:config> diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-stub.xml b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-stub.xml new file mode 100644 index 0000000000000000000000000000000000000000..691cbea135f5c814ac83eac0b12b8b2365a21dee --- /dev/null +++ b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/config-stub.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<config:config xmlns:config="http://www.astron.nl/MoM-OTDB-adapter" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.astron.nl/MoM-OTDB-adapter config.xsd "> + <config:mom2> + <config:username>bastiaan</config:username> + <config:password>bastiaan</config:password> + <config:authurl>http://localhost:8080/useradministration</config:authurl> + <config:mom2-import-url>http://localhost:8080/mom2lofar/interface/importXML2.do</config:mom2-import-url> + <config:mom2-schemas-url>http://localhost:8080/mom2lofar/schemas/</config:mom2-schemas-url> + </config:mom2> + <config:stub> + <config:interval>5</config:interval> + </config:stub> + <config:adapter> + <config:httpport>8082</config:httpport> + <config:keystore-location>./keystores/mom-otdb-adapter-keystore.jks</config:keystore-location> + <config:keystore-password>adapter</config:keystore-password> + <config:trusted-keystore-location>./keystores/mom-otdb-adapter-trusted-keystore.jks</config:trusted-keystore-location> + <config:trusted-keystore-password>adapter-trusted</config:trusted-keystore-password> + </config:adapter> +</config:config> diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/log4j.properties b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/log4j.properties new file mode 100644 index 0000000000000000000000000000000000000000..7408795e146de59dd3ac6051ff9d7d7e5069bf74 --- /dev/null +++ b/SAS/OTB/MoM-OTDB-adapter/dist-sources/conf/log4j.properties @@ -0,0 +1,28 @@ +# +# Configures Log4j as the Tomcat system logger +# +log4j.rootLogger=INFO, FILE + + +#log4j.appender.MAIL=org.apache.log4j.net.SMTPAppender +#log4j.appender.MAIL.Threshold=ERROR +#log4j.appender.MAIL.BufferSize=10 +#log4j.appender.MAIL.From=wop36@astron.nl +#log4j.appender.MAIL.SMTPHost=127.0.0.1 +#log4j.appender.MAIL.Subject=Error on localhost (Log4j) +#log4j.appender.MAIL.To=verhoef@astron.nl +#log4j.appender.MAIL.layout=org.apache.log4j.PatternLayout +#log4j.appender.MAIL.layout.ConversionPattern=%d %-5p %c:%L - %m%n + + + +# +# Configuration for a rolling log file ("mom2-otdb-adapter.log"). +# +log4j.appender.FILE=org.apache.log4j.DailyRollingFileAppender +log4j.appender.FILE.File=./logs/mom-otdb-adapter.log +log4j.appender.FILE.layout=org.apache.log4j.PatternLayout +log4j.appender.FILE.layout.ConversionPattern=%d %-5p %c{2}:%L - %m%n + + + diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-keystore.jks b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-keystore.jks new file mode 100644 index 0000000000000000000000000000000000000000..cdc413d52c360d766bdd2efc34fea863a6f6fa4c Binary files /dev/null and b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-keystore.jks differ diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-trusted-keystore.jks b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-trusted-keystore.jks new file mode 100644 index 0000000000000000000000000000000000000000..a205ee06bc29c9f20c313fefbdbd5e7645deb0bd Binary files /dev/null and b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter-trusted-keystore.jks differ diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter.cer b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter.cer new file mode 100644 index 0000000000000000000000000000000000000000..c538b58fe489ee7274d32548ba3401eebc363ddf Binary files /dev/null and b/SAS/OTB/MoM-OTDB-adapter/dist-sources/keystores/mom-otdb-adapter.cer differ diff --git a/SAS/OTB/MoM-OTDB-adapter/dist-sources/mom-otdb-adapter.bat b/SAS/OTB/MoM-OTDB-adapter/dist-sources/mom-otdb-adapter.bat new file mode 100644 index 0000000000000000000000000000000000000000..f465c58bb7bc40e8b338061250074f7037f32bea --- /dev/null +++ b/SAS/OTB/MoM-OTDB-adapter/dist-sources/mom-otdb-adapter.bat @@ -0,0 +1 @@ +java -jar ./mom-otdb-adapter.jar -c ./conf/config-stub.xml -l ./conf/log4j.properties \ No newline at end of file diff --git a/SAS/OTB/MoM-OTDB-adapter/dist/.cvsignore b/SAS/OTB/MoM-OTDB-adapter/dist/.cvsignore deleted file mode 100644 index 5a7aa5950d6df5b006318799c454ad9c8f9549d7..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/dist/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -tasks diff --git a/SAS/OTB/MoM-OTDB-adapter/dist/mom-otdb-adapter.jar b/SAS/OTB/MoM-OTDB-adapter/dist/mom-otdb-adapter.jar deleted file mode 100644 index aa0b93c885478a2936c2d0247b2a38d5214f028f..0000000000000000000000000000000000000000 Binary files a/SAS/OTB/MoM-OTDB-adapter/dist/mom-otdb-adapter.jar and /dev/null differ diff --git a/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.bat b/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.bat deleted file mode 100644 index 5d01bd89f5f3b54f4d247a00c9e1d43eff93215b..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.bat +++ /dev/null @@ -1,12 +0,0 @@ -set classpath=R:\MoM-OTDB-adapter\lib\astron-http-utils.jar; -set classpath=R:\MoM-OTDB-adapter\lib\astron-utils.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\commons-codec-1.3.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\commons-httpclient-3.0.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\commons-logging.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\commons-validator.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\log4j.1.2.8.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\xercesImpl.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\lib\xml-apis.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\sharedlib\jotdb.jar;%classpath% -set classpath=R:\MoM-OTDB-adapter\dist\mom-otdb-adapter.jar;%classpath% -java nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter -u bastiaan -p bastiaan -rmihost lofar17.astron.nl -rmiport 10099 -mom2url http://localhost:8080/mom2 -authurl http://localhost:8080/wsrtauth \ No newline at end of file diff --git a/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.sh b/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.sh deleted file mode 100644 index 7c236bf9ed3b353e15eaac4c1a0ab2a3a00f3a64..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/dist/mom2-otdb-adapter.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -export PATH=/usr/local/jdk1.5.0_04/bin:$PATH -export LD_LIBRARY_PATH=/home/verhoef/sharedlib:/lib:/usr/lib:/usr/local/lib -export CLASSPATH=/home/verhoef/jotdb.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/astron-http-utils.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/astron-utils.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/commons-codec-1.3.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/commons-httpclient-3.0.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/commons-logging.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/commons-validator.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/log4j.1.2.8.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/xercesImpl.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/javalib/xml-apis.jar:$CLASSPATH -export CLASSPATH=/home/verhoef/mom-otdb-adapter.jar:$CLASSPATH -java nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter -u odtbadapter -p otdbadapter -rmihost lofar17.astron.nl -rmiport 10099 -rmiseconds 5 -mom2url http://localhost:8080/mom2 -authurl http://localhost:8080/wsrtauth diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-frame.html deleted file mode 100644 index 7dd114b4f978b9b6e4bc6c2ccb507d0e1b169cae..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-frame.html +++ /dev/null @@ -1,60 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -All Classes -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameHeadingFont"> -<B>All Classes</B></FONT> -<BR> - -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">AllTests</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data" target="classFrame">LofarObservation</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">Mom2Listener</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">Mom2OtdbConverter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter" target="classFrame">MomOtdbAdapter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">OTDBListener</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data" target="classFrame">OTDBRepository</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">ProcessMom2Connection</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">Queue</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">Task</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">TaskExecutor</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">TestClient</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">TestMom2OtdbConverter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">TimePeriod</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">XMLGenerator</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">XMLParser</A> -<BR> -</FONT></TD> -</TR> -</TABLE> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-noframe.html b/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-noframe.html deleted file mode 100644 index eeefecb201f8202e16f0f4bfcf507cc827bdcf97..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/allclasses-noframe.html +++ /dev/null @@ -1,60 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -All Classes -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameHeadingFont"> -<B>All Classes</B></FONT> -<BR> - -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">AllTests</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestClient</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<BR> -<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<BR> -</FONT></TD> -</TR> -</TABLE> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/constant-values.html b/SAS/OTB/MoM-OTDB-adapter/doc/constant-values.html deleted file mode 100644 index 897a0aefe86b89f28e90bd54036fe686f20c40c4..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/constant-values.html +++ /dev/null @@ -1,446 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Constant Field Values -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Constant Field Values"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="#nl.astron">nl.astron.*</A> -</UL> - -<A NAME="nl.astron"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> -<TH ALIGN="left"><FONT SIZE="+2"> -nl.astron.*</FONT></TH> -</TR> -</TABLE> - -<P> - -<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left" COLSPAN="3">nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository.DATE_TIME_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>public static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#DATE_TIME_FORMAT">DATE_TIME_FORMAT</A></CODE></TD> -<TD ALIGN="right"><CODE>"yyyy-MM-dd HH:mm:ss"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository.TEMPLATE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final int</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#TEMPLATE_ID">TEMPLATE_ID</A></CODE></TD> -<TD ALIGN="right"><CODE>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">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter.MAX_BANDWIDTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final double</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#MAX_BANDWIDTH">MAX_BANDWIDTH</A></CODE></TD> -<TD ALIGN="right"><CODE>3.2E7</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter.TOTAL_SUBBANDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final int</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#TOTAL_SUBBANDS">TOTAL_SUBBANDS</A></CODE></TD> -<TD ALIGN="right"><CODE>512</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">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.ARRAY_CONFIGURATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ARRAY_CONFIGURATION">ARRAY_CONFIGURATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"arrayConfiguration"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.BACKEND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BACKEND">BACKEND</A></CODE></TD> -<TD ALIGN="right"><CODE>"backend"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.BAND_FILTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BAND_FILTER">BAND_FILTER</A></CODE></TD> -<TD ALIGN="right"><CODE>"bandFilter"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.CHILDREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CHILDREN">CHILDREN</A></CODE></TD> -<TD ALIGN="right"><CODE>"children"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.CURRENT_STATUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CURRENT_STATUS">CURRENT_STATUS</A></CODE></TD> -<TD ALIGN="right"><CODE>"currentStatus"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DEC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEC">DEC</A></CODE></TD> -<TD ALIGN="right"><CODE>"dec"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DEFAULT_ARRAY_CONFIGURATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEFAULT_ARRAY_CONFIGURATION">DEFAULT_ARRAY_CONFIGURATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"default"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DETAILED_ARRAY_CONFIGURATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DETAILED_ARRAY_CONFIGURATION">DETAILED_ARRAY_CONFIGURATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"detailed"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DIRECTION_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DIRECTION_TYPE">DIRECTION_TYPE</A></CODE></TD> -<TD ALIGN="right"><CODE>"coordinateRef"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.ITEM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ITEM">ITEM</A></CODE></TD> -<TD ALIGN="right"><CODE>"item"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MEASUREMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT">MEASUREMENT</A></CODE></TD> -<TD ALIGN="right"><CODE>"measurement"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MEASUREMENT_ATTRIBUTES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT_ATTRIBUTES">MEASUREMENT_ATTRIBUTES</A></CODE></TD> -<TD ALIGN="right"><CODE>"measurementAttributes"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MOM2_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MOM2_ID">MOM2_ID</A></CODE></TD> -<TD ALIGN="right"><CODE>"mom2Id"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.NUMBER_OF_BANDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#NUMBER_OF_BANDS">NUMBER_OF_BANDS</A></CODE></TD> -<TD ALIGN="right"><CODE>"numberOfBands"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.OBSERVATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION">OBSERVATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"observation"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.OBSERVATION_ATTRIBUTES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION_ATTRIBUTES">OBSERVATION_ATTRIBUTES</A></CODE></TD> -<TD ALIGN="right"><CODE>"observationAttributes"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.PREFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#PREFIX">PREFIX</A></CODE></TD> -<TD ALIGN="right"><CODE>"lofar"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.RA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#RA">RA</A></CODE></TD> -<TD ALIGN="right"><CODE>"ra"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.REQUESTED_DURATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#REQUESTED_DURATION">REQUESTED_DURATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"requestedDuration"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SPACING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SPACING">SPACING</A></CODE></TD> -<TD ALIGN="right"><CODE>"spacing"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SRG_CONFIGURATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SRG_CONFIGURATION">SRG_CONFIGURATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"srgConfiguration"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.START_FREQUENCY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#START_FREQUENCY">START_FREQUENCY</A></CODE></TD> -<TD ALIGN="right"><CODE>"startFrequency"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.STATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#STATION">STATION</A></CODE></TD> -<TD ALIGN="right"><CODE>"station"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SUBBAND_PLACEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SUBBAND_PLACEMENT">SUBBAND_PLACEMENT</A></CODE></TD> -<TD ALIGN="right"><CODE>"subbandPlacement"</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">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.DATE_TIME_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#DATE_TIME_FORMAT">DATE_TIME_FORMAT</A></CODE></TD> -<TD ALIGN="right"><CODE>"yyyy-MM-dd HH:mm:ss"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.FILE_DATE_TIME_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#FILE_DATE_TIME_FORMAT">FILE_DATE_TIME_FORMAT</A></CODE></TD> -<TD ALIGN="right"><CODE>"yyyy_MM_dd\'T\'HH_mm_ss"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.OTDB_TIME_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#OTDB_TIME_FORMAT">OTDB_TIME_FORMAT</A></CODE></TD> -<TD ALIGN="right"><CODE>"yyyy-MMM-dd HH:mm:ss"</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">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor.SLEEP_MILLISECONDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>private static final int</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#SLEEP_MILLISECONDS">SLEEP_MILLISECONDS</A></CODE></TD> -<TD ALIGN="right"><CODE>30000</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">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.FAILED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>protected static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FAILED">FAILED</A></CODE></TD> -<TD ALIGN="right"><CODE>"failed"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.FINISHED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>protected static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FINISHED">FINISHED</A></CODE></TD> -<TD ALIGN="right"><CODE>"finished"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.MOM2_LOFAR_NAMESPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>protected static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_LOFAR_NAMESPACE">MOM2_LOFAR_NAMESPACE</A></CODE></TD> -<TD ALIGN="right"><CODE>"http://www.astron.nl/MoM2-Lofar"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.MOM2_NAMESPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>protected static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_NAMESPACE">MOM2_NAMESPACE</A></CODE></TD> -<TD ALIGN="right"><CODE>"http://www.astron.nl/MoM2"</CODE></TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.OTDB_DATETIME_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> -<CODE>protected static final java.lang.String</CODE></FONT></TD> -<TD ALIGN="left"><CODE><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#OTDB_DATETIME_FORMAT">OTDB_DATETIME_FORMAT</A></CODE></TD> -<TD ALIGN="right"><CODE>"yyyy-MMM-dd HH:mm:ss"</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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/deprecated-list.html b/SAS/OTB/MoM-OTDB-adapter/doc/deprecated-list.html deleted file mode 100644 index c06843e88f2d030630912f1edd363bcd26a9d8c4..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/deprecated-list.html +++ /dev/null @@ -1,142 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -Deprecated List -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Deprecated List"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/help-doc.html b/SAS/OTB/MoM-OTDB-adapter/doc/help-doc.html deleted file mode 100644 index a922e55ac5fce7814b8fda91823e18d56e970537..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/help-doc.html +++ /dev/null @@ -1,219 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -API Help -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="API Help"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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-files/index-1.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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-1.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-1.html deleted file mode 100644 index 9af83693d864a20dd01f4c7f09819f16dbb1a4fb..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-1.html +++ /dev/null @@ -1,180 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -A-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="A-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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 LETTER - <A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-1.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_A_"><!-- --></A><H2> -<B>A</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html#accept(java.io.File, java.lang.String)"><B>accept(File, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue.TasksFilter</A> -<DD>filters task files, tasks files ends on .xml -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#add(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><B>add(Task)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Add the task to the task list and store it as a xml file -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addChildren(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>addChildren(Element, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addMeasurement(org.w3c.dom.Element, java.lang.String, java.lang.String, java.util.Date, java.util.Date)"><B>addMeasurement(Element, String, String, Date, Date)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addObservation(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>addObservation(Element, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addXmlStatusElement(org.w3c.dom.Element, java.lang.String)"><B>addXmlStatusElement(Element, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>AllTests</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.test</A><DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html#AllTests()"><B>AllTests()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">AllTests</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angle1"><B>angle1</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Angle 1 (mom2 -> otdb) - e.g. [6.123662, 5.233748, 1459568] -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angle2"><B>angle2</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Angle 2 (mom2 -> otdb) - e.g. [1.026719, 0,711018, 0384089] -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angleTimes"><B>angleTimes</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>angles times in seconds. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ARRAY_CONFIGURATION"><B>ARRAY_CONFIGURATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#arrayConfiguration"><B>arrayConfiguration</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Array configuration (mom2 -> otdb) - e.g. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#authUrl"><B>authUrl</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -</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="#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 LETTER - <A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-1.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-10.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-10.html deleted file mode 100644 index a81d70532c5933c122e7130e96ddfa968cc5d4f2..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-10.html +++ /dev/null @@ -1,166 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -L-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="L-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-9.html"><B>PREV LETTER</B></A> - <A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-10.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_L_"><!-- --></A><H2> -<B>L</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#listenSocket()"><B>listenSocket()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestClient</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>LofarObservation</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A><DD>This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#LofarObservation()"><B>LofarObservation()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#log"><B>log</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -</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="#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"> - <A HREF="index-9.html"><B>PREV LETTER</B></A> - <A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-10.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-11.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-11.html deleted file mode 100644 index 134842ca4edab1501f216d28983dbf1da5c3856e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-11.html +++ /dev/null @@ -1,194 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -M-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="M-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-10.html"><B>PREV LETTER</B></A> - <A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-11.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_M_"><!-- --></A><H2> -<B>M</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#main(java.lang.String[])"><B>main(String[])</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#main(java.lang.String[])"><B>main(String[])</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestClient</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#MAX_BANDWIDTH"><B>MAX_BANDWIDTH</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT"><B>MEASUREMENT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT_ATTRIBUTES"><B>MEASUREMENT_ATTRIBUTES</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#measurementMom2Ids"><B>measurementMom2Ids</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>mom2Ids of the measurements that belongs to the lofarobservation (mom2 <-> otdb) - e.g. [201,202,203] -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#milliseconds"><B>milliseconds</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MOM2_ID"><B>MOM2_ID</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_LOFAR_NAMESPACE"><B>MOM2_LOFAR_NAMESPACE</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_NAMESPACE"><B>MOM2_NAMESPACE</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#mom2Id"><B>mom2Id</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>mom2Id of the lofar observation (mom2 <-> otdb) - e.g. 200 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#mom2Id"><B>mom2Id</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD>Mom2 id -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2Listener</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A><DD>Listen at port 4444 for mom request<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#Mom2Listener(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)"><B>Mom2Listener(OTDBRepository)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A> -<DD>Constructor -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2OtdbConverter</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A><DD>Converts mom2 values to otdb values<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#Mom2OtdbConverter()"><B>Mom2OtdbConverter()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter"><B>MomOtdbAdapter</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter</A><DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#MomOtdbAdapter()"><B>MomOtdbAdapter()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#momUrl"><B>momUrl</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#momUrl"><B>momUrl</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#moveToEndOfTaskList(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><B>moveToEndOfTaskList(Task)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>If a task can not be executed, move it to the end of the tasks list, so other tasks can be executed. -</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="#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"> - <A HREF="index-10.html"><B>PREV LETTER</B></A> - <A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-11.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-12.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-12.html deleted file mode 100644 index ff5258167da0e321df8312cc6f1177d4225e7dfe..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-12.html +++ /dev/null @@ -1,141 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -N-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="N-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-11.html"><B>PREV LETTER</B></A> - <A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-12.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_N_"><!-- --></A><H2> -<B>N</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html"><B>nl.astron.lofar.odtb.mom2otdbadapter</B></A> - package nl.astron.lofar.odtb.mom2otdbadapter<DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html"><B>nl.astron.lofar.odtb.mom2otdbadapter.data</B></A> - package nl.astron.lofar.odtb.mom2otdbadapter.data<DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html"><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</B></A> - package nl.astron.lofar.odtb.mom2otdbadapter.mom2listener<DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A> - package nl.astron.lofar.odtb.mom2otdbadapter.otdblistener<DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html"><B>nl.astron.lofar.odtb.mom2otdbadapter.test</B></A> - package nl.astron.lofar.odtb.mom2otdbadapter.test<DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#NUMBER_OF_BANDS"><B>NUMBER_OF_BANDS</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -</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="#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"> - <A HREF="index-11.html"><B>PREV LETTER</B></A> - <A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-12.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-13.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-13.html deleted file mode 100644 index a5001a82e9756dad3db949a05d6d107239197ec7..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-13.html +++ /dev/null @@ -1,159 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -O-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="O-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-12.html"><B>PREV LETTER</B></A> - <A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-13.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_O_"><!-- --></A><H2> -<B>O</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION"><B>OBSERVATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION_ATTRIBUTES"><B>OBSERVATION_ATTRIBUTES</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#OTDB_DATETIME_FORMAT"><B>OTDB_DATETIME_FORMAT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#OTDB_TIME_FORMAT"><B>OTDB_TIME_FORMAT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>OTDBListener</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Polls if there are changes in the OTDB database.<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#OTDBListener(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, int, nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)"><B>OTDBListener(Queue, int, OTDBRepository)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD>Constructor -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>OTDBRepository</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A><DD>Repository that stores and retrieves LofarObservation objects to the jOTDB RMI interface.<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#OTDBRepository(java.lang.String, int)"><B>OTDBRepository(String, int)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Constructor that makes a connection to the specified rmi server on the specified rmi port -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#out"><B>out</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -</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="#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"> - <A HREF="index-12.html"><B>PREV LETTER</B></A> - <A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-13.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-14.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-14.html deleted file mode 100644 index 520d4b58a188cad87a7d5f4c880f0de30b2cb401..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-14.html +++ /dev/null @@ -1,186 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -P-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="P-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-13.html"><B>PREV LETTER</B></A> - <A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-14.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_P_"><!-- --></A><H2> -<B>P</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#parseArgument(java.lang.String, java.lang.String)"><B>parseArgument(String, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD>Parse one argument -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#parseArguments(java.lang.String[])"><B>parseArguments(String[])</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD>Parse arguments -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseArrayConfiguration(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseArrayConfiguration(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the arrayConfiguration xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseChildren(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseChildren(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the children xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseCurrentStatus(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseCurrentStatus(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the currentStatus xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseItem(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseItem(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the item xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurement(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseMeasurement(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the measurement xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurementAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseMeasurementAttributes(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the measurementAttributes xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseObservationAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseObservationAttributes(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the observationAttributes xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseStations(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>parseStations(Node, LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse the stations xml element. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#password"><B>password</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#password"><B>password</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#PREFIX"><B>PREFIX</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#processInput(java.lang.String)"><B>processInput(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD>It process the input and stores it to repository -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>ProcessMom2Connection</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A><DD>Process a mom2 connection<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#ProcessMom2Connection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)"><B>ProcessMom2Connection(OTDBRepository, Socket)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD>Constructor -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#processTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><B>processTask(Task)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>Process task. -</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="#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"> - <A HREF="index-13.html"><B>PREV LETTER</B></A> - <A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-14.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-15.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-15.html deleted file mode 100644 index d317ca119eae97db504e67b8ce83705d5aa81aca..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-15.html +++ /dev/null @@ -1,150 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -Q-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Q-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-14.html"><B>PREV LETTER</B></A> - <A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-15.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_Q_"><!-- --></A><H2> -<B>Q</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#queue"><B>queue</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Queue of tasks<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#Queue()"><B>Queue()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Constructor that looks for tasks (*.xml) in the . -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#queue"><B>queue</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue.TasksFilter</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Filters task files<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html#Queue.TasksFilter()"><B>Queue.TasksFilter()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue.TasksFilter</A> -<DD> -</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="#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"> - <A HREF="index-14.html"><B>PREV LETTER</B></A> - <A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-15.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-16.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-16.html deleted file mode 100644 index 3880b2fb030590071077e4cfcb33ac4e1b492909..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-16.html +++ /dev/null @@ -1,181 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -R-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="R-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-15.html"><B>PREV LETTER</B></A> - <A HREF="index-17.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-16.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-16.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_R_"><!-- --></A><H2> -<B>R</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#RA"><B>RA</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#remoteOTDB"><B>remoteOTDB</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#remove(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><B>remove(Task)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Remove a task -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#removePrefix(org.w3c.dom.Node)"><B>removePrefix(Node)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Returns the node name without prefix -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#repository"><B>repository</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#repository"><B>repository</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#repository"><B>repository</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#REQUESTED_DURATION"><B>REQUESTED_DURATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#requestedDuration"><B>requestedDuration</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>requested duration is milliseconds (mom2 -> otdb) - e.g. 840000 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#rmiHost"><B>rmiHost</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#rmiPort"><B>rmiPort</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#run()"><B>run()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD>Starts the thread ProcessMom2Connection. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#run()"><B>run()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD>Starts the OTDBListener and retrieves changes with an interval -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#run()"><B>run()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>start the taskExecutor thread -</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="#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"> - <A HREF="index-15.html"><B>PREV LETTER</B></A> - <A HREF="index-17.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-16.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-16.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-17.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-17.html deleted file mode 100644 index 78ebda9a34caafa9a16be8bc6c9338773b79cc8c..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-17.html +++ /dev/null @@ -1,292 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -S-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="S-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-16.html"><B>PREV LETTER</B></A> - <A HREF="index-18.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-17.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-17.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_S_"><!-- --></A><H2> -<B>S</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#samplingFrequency"><B>samplingFrequency</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Sampling frequency in Hz (mom2 -> otdb) - e.g. 160000000 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#saveTimePeriod()"><B>saveTimePeriod()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Save the time period -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#seconds"><B>seconds</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngle1(java.lang.String)"><B>setAngle1(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngle2(java.lang.String)"><B>setAngle2(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngleTimes(java.lang.String)"><B>setAngleTimes(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setArrayConfiguration(java.lang.String)"><B>setArrayConfiguration(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setBackend(java.lang.String)"><B>setBackend(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setBandSelection(java.lang.String)"><B>setBandSelection(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setDirectionType(java.lang.String)"><B>setDirectionType(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setEndTime(java.lang.String)"><B>setEndTime(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#setEndTime(java.util.Date)"><B>setEndTime(Date)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setFileName(java.lang.String)"><B>setFileName(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setMeasurementMom2Ids(java.lang.String)"><B>setMeasurementMom2Ids(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setMom2Id(int)"><B>setMom2Id(int)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setMom2Id(java.lang.String)"><B>setMom2Id(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setRequestedDuration(int)"><B>setRequestedDuration(int)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSamplingFrequency(java.lang.Integer)"><B>setSamplingFrequency(Integer)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSrgConfiguration(java.lang.String)"><B>setSrgConfiguration(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStartTime(java.lang.String)"><B>setStartTime(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#setStartTime(java.util.Date)"><B>setStartTime(Date)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStations(java.lang.String)"><B>setStations(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStatus(java.lang.String)"><B>setStatus(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSubbands(java.lang.String)"><B>setSubbands(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setTime(java.lang.String)"><B>setTime(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setTimeStamp(java.lang.String)"><B>setTimeStamp(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#setUp()"><B>setUp()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setXml(java.lang.String)"><B>setXml(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#showSyntax()"><B>showSyntax()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD>Shows the syntax of this program -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#sleep()"><B>sleep()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>If some error occured, the task executor going to sleep for a while -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#SLEEP_MILLISECONDS"><B>SLEEP_MILLISECONDS</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SPACING"><B>SPACING</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SRG_CONFIGURATION"><B>SRG_CONFIGURATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#srgConfiguration"><B>srgConfiguration</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>SRG configuration (mom2 -> otdb) - e.g. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#start()"><B>start()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A> -<DD>Starts a ServerSocket on port 4444 - If a clients connect, it starts a new class ProcessMom2Connection -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#START_FREQUENCY"><B>START_FREQUENCY</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#startServices()"><B>startServices()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD>Starts all services -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#startTime"><B>startTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>start time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:50:00 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#startTime"><B>startTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#startTime"><B>startTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#STATION"><B>STATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#stations"><B>stations</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Stations that belongs to the array configuration (mom2 -> otdb) - e.g. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#status"><B>status</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>status of a lofar observation, (mom2 <-> otdb) - e.g. being specified. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#store(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>store(LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Stores a lofarObservation to jOTDB -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#storeParam(jOTDB.jOTDBnode, java.lang.String, java.lang.String)"><B>storeParam(jOTDBnode, String, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Stores parameter in the tree by given parent node -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#storeTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><B>storeTask(Task)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Store a task -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SUBBAND_PLACEMENT"><B>SUBBAND_PLACEMENT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#subbands"><B>subbands</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>subbands that must be used (mom2 -> otdb) - e.g. [1,3,5,7] -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html#suite()"><B>suite()</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">AllTests</A> -<DD> -</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="#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"> - <A HREF="index-16.html"><B>PREV LETTER</B></A> - <A HREF="index-18.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-17.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-17.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-18.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-18.html deleted file mode 100644 index b2226160cfe85472e61bc00ebc8140541c7a24e7..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-18.html +++ /dev/null @@ -1,199 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -T-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="T-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-17.html"><B>PREV LETTER</B></A> - <A HREF="index-19.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-18.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-18.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_T_"><!-- --></A><H2> -<B>T</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Task</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Task<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#Task()"><B>Task()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#taskDir"><B>taskDir</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TaskExecutor</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Execute the tasks that are in the queue<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#TaskExecutor(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><B>TaskExecutor(Queue, String, String, String, String)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>Constructor -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#tasks"><B>tasks</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#tearDown()"><B>tearDown()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#TEMPLATE_ID"><B>TEMPLATE_ID</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestClient</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.test</A><DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#TestClient()"><B>TestClient()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestClient</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBBandSelection()"><B>testGetOTDBBandSelection()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBContiguousSubbands()"><B>testGetOTDBContiguousSubbands()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBFrequency()"><B>testGetOTDBFrequency()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBMaxSubbands()"><B>testGetOTDBMaxSubbands()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBSamplingFrequency()"><B>testGetOTDBSamplingFrequency()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBScatteredSubbands()"><B>testGetOTDBScatteredSubbands()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBStatus()"><B>testGetOTDBStatus()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestMom2OtdbConverter</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.test</A><DD> <DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#TestMom2OtdbConverter(java.lang.String)"><B>TestMom2OtdbConverter(String)</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#time"><B>time</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD>Timestamp of the status change of the lofarobservation -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TimePeriod</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Time period<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#TimePeriod()"><B>TimePeriod()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#timeStamp"><B>timeStamp</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>timestamp of status change in UTC (mom2 <-> otdb) - e.g. 2005-Dec-22 15:00:00 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#tm"><B>tm</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#TOTAL_SUBBANDS"><B>TOTAL_SUBBANDS</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD> -</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="#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"> - <A HREF="index-17.html"><B>PREV LETTER</B></A> - <A HREF="index-19.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-18.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-18.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-19.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-19.html deleted file mode 100644 index 064aa06e336ad849636d5d73fb0a6c37b7267f7a..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-19.html +++ /dev/null @@ -1,144 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -U-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="U-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-18.html"><B>PREV LETTER</B></A> - <A HREF="index-20.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-19.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-19.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_U_"><!-- --></A><H2> -<B>U</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#username"><B>username</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#username"><B>username</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -</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="#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"> - <A HREF="index-18.html"><B>PREV LETTER</B></A> - <A HREF="index-20.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-19.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-19.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-2.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-2.html deleted file mode 100644 index bf59f25541f5891095eeaffea2b953936f1ae0a3..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-2.html +++ /dev/null @@ -1,152 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -B-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="B-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-1.html"><B>PREV LETTER</B></A> - <A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-2.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-2.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_B_"><!-- --></A><H2> -<B>B</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#backend"><B>backend</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>backend that must be used (mom2 -> otdb) - e.g. -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BACKEND"><B>BACKEND</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BAND_FILTER"><B>BAND_FILTER</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#bandSelection"><B>bandSelection</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Band selection (mom2 -> otdb) - e.g. -</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="#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"> - <A HREF="index-1.html"><B>PREV LETTER</B></A> - <A HREF="index-3.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-2.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-2.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-20.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-20.html deleted file mode 100644 index 4fbf56879cb9f059d321f5bd1b4271eadddeeae2..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-20.html +++ /dev/null @@ -1,141 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -W-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="W-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-19.html"><B>PREV LETTER</B></A> - <A HREF="index-21.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-20.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-20.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_W_"><!-- --></A><H2> -<B>W</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#withPrefix(java.lang.String)"><B>withPrefix(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>add prefix to a string -</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="#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"> - <A HREF="index-19.html"><B>PREV LETTER</B></A> - <A HREF="index-21.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-20.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-20.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-21.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-21.html deleted file mode 100644 index b8e442269d337de1edc4175eec101a991d4df9c1..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-21.html +++ /dev/null @@ -1,150 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -X-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="X-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-20.html"><B>PREV LETTER</B></A> - NEXT LETTER</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-21.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-21.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_X_"><!-- --></A><H2> -<B>X</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#xml"><B>xml</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD>MoM2 xml representation of a lofarobservation -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#xmlBuilder"><B>xmlBuilder</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>XMLGenerator</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A><DD>Generates MoM2-xml<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#XMLGenerator()"><B>XMLGenerator()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>XMLParser</B></A> - Class in <A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A><DD>parse the XML input from MoM and returns a LofarObservations.<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#XMLParser()"><B>XMLParser()</B></A> - -Constructor for class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -</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="#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"> - <A HREF="index-20.html"><B>PREV LETTER</B></A> - NEXT LETTER</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-21.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-21.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-3.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-3.html deleted file mode 100644 index 40037baa2f9160d1e9e0b84070c81771abc0de83..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-3.html +++ /dev/null @@ -1,162 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -C-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="C-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-2.html"><B>PREV LETTER</B></A> - <A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-3.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_C_"><!-- --></A><H2> -<B>C</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CHILDREN"><B>CHILDREN</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#client"><B>client</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#converter"><B>converter</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#convertStringToDocument(java.lang.String)"><B>convertStringToDocument(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD>Convert a xml-string to a Document -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#convertStringToDocument(java.lang.String)"><B>convertStringToDocument(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>Converts a xml to a document -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#convertToMomStatus(java.lang.String)"><B>convertToMomStatus(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#convertToTask(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>convertToTask(LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A> -<DD>Converts a observation to a task using the xml generation -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CURRENT_STATUS"><B>CURRENT_STATUS</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -</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="#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"> - <A HREF="index-2.html"><B>PREV LETTER</B></A> - <A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-3.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-4.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-4.html deleted file mode 100644 index 3e16f04e2057c470ca000bea509f1b7f5a3a46f1..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-4.html +++ /dev/null @@ -1,160 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -D-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="D-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-3.html"><B>PREV LETTER</B></A> - <A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-4.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-4.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_D_"><!-- --></A><H2> -<B>D</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#DATE_TIME_FORMAT"><B>DATE_TIME_FORMAT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#DATE_TIME_FORMAT"><B>DATE_TIME_FORMAT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEC"><B>DEC</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEFAULT_ARRAY_CONFIGURATION"><B>DEFAULT_ARRAY_CONFIGURATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DETAILED_ARRAY_CONFIGURATION"><B>DETAILED_ARRAY_CONFIGURATION</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DIRECTION_TYPE"><B>DIRECTION_TYPE</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#directionType"><B>directionType</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>Direction type (mom2 -> otdb) - e.g. -</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="#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"> - <A HREF="index-3.html"><B>PREV LETTER</B></A> - <A HREF="index-5.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-4.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-4.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-5.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-5.html deleted file mode 100644 index 9d2ae0d440eeb9004aade34028ff8596a663340e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-5.html +++ /dev/null @@ -1,157 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -E-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="E-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-4.html"><B>PREV LETTER</B></A> - <A HREF="index-6.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-5.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-5.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_E_"><!-- --></A><H2> -<B>E</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#endTime"><B>endTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD>end time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:53:00 -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#endTime"><B>endTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#endTime"><B>endTime</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#equal(org.w3c.dom.Node, java.lang.String)"><B>equal(Node, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>The equal method compares if an node has the given name -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#equal(org.w3c.dom.Node, java.lang.String)"><B>equal(Node, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>The equal method compares if an node has the given name -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#equalIgnorePrefix(org.w3c.dom.Node, java.lang.String)"><B>equalIgnorePrefix(Node, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Compares if a node has the given name, ignoring the prefix of the node -</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="#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"> - <A HREF="index-4.html"><B>PREV LETTER</B></A> - <A HREF="index-6.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-5.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-5.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-6.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-6.html deleted file mode 100644 index 71f18cc028671d860284b1a691be6de5e29ec9ea..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-6.html +++ /dev/null @@ -1,156 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -F-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="F-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-5.html"><B>PREV LETTER</B></A> - <A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-6.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_F_"><!-- --></A><H2> -<B>F</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FAILED"><B>FAILED</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#FILE_DATE_TIME_FORMAT"><B>FILE_DATE_TIME_FORMAT</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#fileName"><B>fileName</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD>Name of the file that belongs to this task -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#finalize()"><B>finalize()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FINISHED"><B>FINISHED</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#formatStatus(java.lang.String)"><B>formatStatus(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Retrieve status from status element -</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="#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"> - <A HREF="index-5.html"><B>PREV LETTER</B></A> - <A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-6.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-7.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-7.html deleted file mode 100644 index f83c1d17702f2590c7316d74ec90fb44399c852e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-7.html +++ /dev/null @@ -1,270 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -G-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="G-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-6.html"><B>PREV LETTER</B></A> - <A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-7.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_G_"><!-- --></A><H2> -<B>G</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#get()"><B>get()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Retrieve a task, if there are tasks, if there are no tasks, wait until a task is in the queue -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngle1()"><B>getAngle1()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngle2()"><B>getAngle2()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngleTimes()"><B>getAngleTimes()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getArray(java.lang.String)"><B>getArray(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getArrayConfiguration()"><B>getArrayConfiguration()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getAttribute(org.w3c.dom.NamedNodeMap, java.lang.String)"><B>getAttribute(NamedNodeMap, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Retrieve an attribute value from a attribute map -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getBackend()"><B>getBackend()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getBandSelection()"><B>getBandSelection()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getDirectionType()"><B>getDirectionType()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getEndTime()"><B>getEndTime()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#getEndTime()"><B>getEndTime()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#getFile(java.lang.String)"><B>getFile(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Retrieve file by file name -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getFileName()"><B>getFileName()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#getLatestChanges(java.util.Date, java.util.Date)"><B>getLatestChanges(Date, Date)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Retrieve lates changes between start- en endtime -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getLofarObservation(org.w3c.dom.Document)"><B>getLofarObservation(Document)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Parse a xml document and returns a lofar obseravation -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getMeasurementMom2Ids()"><B>getMeasurementMom2Ids()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getMom2Id()"><B>getMom2Id()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getMom2Id()"><B>getMom2Id()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#getNode(jOTDB.jOTDBnode, java.lang.String)"><B>getNode(jOTDBnode, String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Retrieves node by parent node and parameter name -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationDocument(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>getObservationDocument(LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD>Generates XML Document from lofarObservation -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationXml(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><B>getObservationXml(LofarObservation)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD>Generates XML String from LofarObservaiton -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBBandSelection(java.lang.String)"><B>getOTDBBandSelection(String)</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD>Calculate bandselection from filter -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBFrequency(java.lang.String)"><B>getOTDBFrequency(String)</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD>Calculate frequency from mom frequency -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBSamplingFrequency(java.lang.String)"><B>getOTDBSamplingFrequency(String)</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD>Calculate sampling frequency -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBStatus(java.lang.String)"><B>getOTDBStatus(String)</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD>Convert OTDB status from mom status -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBSubbands(java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer)"><B>getOTDBSubbands(Integer, Integer, String, Integer, Integer)</B></A> - -Static method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A> -<DD>Calculate an array of subbands -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getRequestedDuration()"><B>getRequestedDuration()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#getResultXml(java.lang.String)"><B>getResultXml(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD>Creates a result xml by given erros -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSamplingFrequency()"><B>getSamplingFrequency()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getSeconds(java.lang.String)"><B>getSeconds(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>Get seconds from a xml duration string -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSrgConfiguration()"><B>getSrgConfiguration()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStartTime()"><B>getStartTime()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#getStartTime()"><B>getStartTime()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStations()"><B>getStations()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStatus()"><B>getStatus()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getStatusStringFromCode(java.lang.String)"><B>getStatusStringFromCode(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSubbands()"><B>getSubbands()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getTime()"><B>getTime()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#getTimePeriod()"><B>getTimePeriod()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD>Retrieves the new time period, from the last time period to now -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getTimeStamp()"><B>getTimeStamp()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getValue(org.w3c.dom.Node)"><B>getValue(Node)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD>The getValue method returns the value of an node -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#getValue(org.w3c.dom.Node)"><B>getValue(Node)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>The getValue method returns the value of an node -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getXml()"><B>getXml()</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> -<DD> -</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="#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"> - <A HREF="index-6.html"><B>PREV LETTER</B></A> - <A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-7.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-8.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-8.html deleted file mode 100644 index f7424607f9e0f2aa814cf04c803d59b03123b52e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-8.html +++ /dev/null @@ -1,141 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -H-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="H-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-7.html"><B>PREV LETTER</B></A> - <A HREF="index-9.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-8.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-8.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_H_"><!-- --></A><H2> -<B>H</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#httpClient"><B>httpClient</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD> -</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="#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"> - <A HREF="index-7.html"><B>PREV LETTER</B></A> - <A HREF="index-9.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-8.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-8.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-9.html b/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-9.html deleted file mode 100644 index 64d727a3344a0c66057f5a7a7f35479285830e59..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index-files/index-9.html +++ /dev/null @@ -1,153 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -I-Index -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="I-Index"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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"> - <A HREF="index-8.html"><B>PREV LETTER</B></A> - <A HREF="index-10.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-9.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-9.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="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> -<A NAME="_I_"><!-- --></A><H2> -<B>I</B></H2> -<DL> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#in"><B>in</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#isStatusThatMustBeExported(java.lang.String)"><B>isStatusThatMustBeExported(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> -<DD>Checkes if observation with a status must be exported to MoM -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#isSucceed(java.lang.String)"><B>isSucceed(String)</B></A> - -Method in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A> -<DD>Analyzed the mom2 output and return if the task is done -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#isTaskLocked"><B>isTaskLocked</B></A> - -Variable in class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> -<DD> -<DT><A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ITEM"><B>ITEM</B></A> - -Static variable in class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A> -<DD> -</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="#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"> - <A HREF="index-8.html"><B>PREV LETTER</B></A> - <A HREF="index-10.html"><B>NEXT LETTER</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../index.html?index-filesindex-9.html" target="_top"><B>FRAMES</B></A> - <A HREF="index-9.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 ======= --> - -<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">L</A> <A HREF="index-11.html">M</A> <A HREF="index-12.html">N</A> <A HREF="index-13.html">O</A> <A HREF="index-14.html">P</A> <A HREF="index-15.html">Q</A> <A HREF="index-16.html">R</A> <A HREF="index-17.html">S</A> <A HREF="index-18.html">T</A> <A HREF="index-19.html">U</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/index.html b/SAS/OTB/MoM-OTDB-adapter/doc/index.html deleted file mode 100644 index 35353e7b639496cb8feabf31a4fc1d5f81343eda..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/index.html +++ /dev/null @@ -1,37 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc on Wed Jan 04 16:44:33 CET 2006--> -<TITLE> -Generated Documentation (Untitled) -</TITLE> -<SCRIPT type="text/javascript"> - targetPage = "" + window.location.search; - if (targetPage != "" && targetPage != "undefined") - targetPage = targetPage.substring(1); - 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> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html deleted file mode 100644 index 488dc645348e637a61b86374ff1264b5f388ef25..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html +++ /dev/null @@ -1,493 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -MomOtdbAdapter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="MomOtdbAdapter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/MomOtdbAdapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" target="_top"><B>FRAMES</B></A> - <A HREF="MomOtdbAdapter.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter</FONT> -<BR> -Class MomOtdbAdapter</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>MomOtdbAdapter</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>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#authUrl">authUrl</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#momUrl">momUrl</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#password">password</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#rmiHost">rmiHost</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#rmiPort">rmiPort</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#seconds">seconds</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#username">username</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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#MomOtdbAdapter()">MomOtdbAdapter</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>static void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#main(java.lang.String[])">main</A></B>(java.lang.String[] args)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#parseArgument(java.lang.String, java.lang.String)">parseArgument</A></B>(java.lang.String argument, - java.lang.String value)</CODE> - -<BR> - Parse one argument</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#parseArguments(java.lang.String[])">parseArguments</A></B>(java.lang.String[] args)</CODE> - -<BR> - Parse arguments</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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#showSyntax()">showSyntax</A></B>()</CODE> - -<BR> - Shows the syntax of this program</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html#startServices()">startServices</A></B>()</CODE> - -<BR> - Starts all services</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> - -<!-- ============ 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="username"><!-- --></A><H3> -username</H3> -<PRE> -protected java.lang.String <B>username</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="password"><!-- --></A><H3> -password</H3> -<PRE> -protected java.lang.String <B>password</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="momUrl"><!-- --></A><H3> -momUrl</H3> -<PRE> -protected java.lang.String <B>momUrl</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="authUrl"><!-- --></A><H3> -authUrl</H3> -<PRE> -protected java.lang.String <B>authUrl</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="rmiHost"><!-- --></A><H3> -rmiHost</H3> -<PRE> -protected java.lang.String <B>rmiHost</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="rmiPort"><!-- --></A><H3> -rmiPort</H3> -<PRE> -protected java.lang.Integer <B>rmiPort</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="seconds"><!-- --></A><H3> -seconds</H3> -<PRE> -protected java.lang.Integer <B>seconds</B></PRE> -<DL> -<DL> -</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="MomOtdbAdapter()"><!-- --></A><H3> -MomOtdbAdapter</H3> -<PRE> -public <B>MomOtdbAdapter</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="startServices()"><!-- --></A><H3> -startServices</H3> -<PRE> -protected void <B>startServices</B>() - throws java.io.IOException, - java.rmi.NotBoundException</PRE> -<DL> -<DD>Starts all services -<P> -<DD><DL> - -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE> -<DD><CODE>java.rmi.NotBoundException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="parseArguments(java.lang.String[])"><!-- --></A><H3> -parseArguments</H3> -<PRE> -protected void <B>parseArguments</B>(java.lang.String[] args) - throws java.lang.Exception</PRE> -<DL> -<DD>Parse arguments -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>args</CODE> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="parseArgument(java.lang.String, java.lang.String)"><!-- --></A><H3> -parseArgument</H3> -<PRE> -protected void <B>parseArgument</B>(java.lang.String argument, - java.lang.String value) - throws java.lang.Exception</PRE> -<DL> -<DD>Parse one argument -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>argument</CODE> - <DD><CODE>value</CODE> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="main(java.lang.String[])"><!-- --></A><H3> -main</H3> -<PRE> -public static void <B>main</B>(java.lang.String[] args) - throws java.lang.Exception</PRE> -<DL> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>args</CODE> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="showSyntax()"><!-- --></A><H3> -showSyntax</H3> -<PRE> -public void <B>showSyntax</B>()</PRE> -<DL> -<DD>Shows the syntax of this program -<P> -<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/MomOtdbAdapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" target="_top"><B>FRAMES</B></A> - <A HREF="MomOtdbAdapter.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/class-use/MomOtdbAdapter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/class-use/MomOtdbAdapter.html deleted file mode 100644 index 55b34ed6af0b25a2083dbc7304b9f2755b42cba1..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/class-use/MomOtdbAdapter.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/\class-useMomOtdbAdapter.html" target="_top"><B>FRAMES</B></A> - <A HREF="MomOtdbAdapter.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>nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.MomOtdbAdapter -<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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/\class-useMomOtdbAdapter.html" target="_top"><B>FRAMES</B></A> - <A HREF="MomOtdbAdapter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html deleted file mode 100644 index bb03b6cb94e4c75030df3bef12e9bc5b96c230f2..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html +++ /dev/null @@ -1,1447 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -LofarObservation -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="LofarObservation"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/LofarObservation.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" target="_top"><B>FRAMES</B></A> - <A HREF="LofarObservation.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.data</FONT> -<BR> -Class LofarObservation</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>LofarObservation</B><DT>extends java.lang.Object<DT>implements java.io.Serializable</DL> -</PRE> - -<P> -This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -<DT><B>See Also:</B><DD><A HREF="../../../../../../serialized-form.html#nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation">Serialized Form</A></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>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angle1">angle1</A></B></CODE> - -<BR> - Angle 1 (mom2 -> otdb) - e.g. [6.123662, 5.233748, 1459568]</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angle2">angle2</A></B></CODE> - -<BR> - Angle 2 (mom2 -> otdb) - e.g. [1.026719, 0,711018, 0384089]</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#angleTimes">angleTimes</A></B></CODE> - -<BR> - angles times in seconds.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#arrayConfiguration">arrayConfiguration</A></B></CODE> - -<BR> - Array configuration (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#backend">backend</A></B></CODE> - -<BR> - backend that must be used (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#bandSelection">bandSelection</A></B></CODE> - -<BR> - Band selection (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#directionType">directionType</A></B></CODE> - -<BR> - Direction type (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#endTime">endTime</A></B></CODE> - -<BR> - end time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:53:00</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#measurementMom2Ids">measurementMom2Ids</A></B></CODE> - -<BR> - mom2Ids of the measurements that belongs to the lofarobservation (mom2 <-> otdb) - e.g. [201,202,203]</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#mom2Id">mom2Id</A></B></CODE> - -<BR> - mom2Id of the lofar observation (mom2 <-> otdb) - e.g. 200</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#requestedDuration">requestedDuration</A></B></CODE> - -<BR> - requested duration is milliseconds (mom2 -> otdb) - e.g. 840000</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#samplingFrequency">samplingFrequency</A></B></CODE> - -<BR> - Sampling frequency in Hz (mom2 -> otdb) - e.g. 160000000</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#srgConfiguration">srgConfiguration</A></B></CODE> - -<BR> - SRG configuration (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#startTime">startTime</A></B></CODE> - -<BR> - start time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:50:00</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#stations">stations</A></B></CODE> - -<BR> - Stations that belongs to the array configuration (mom2 -> otdb) - e.g.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#status">status</A></B></CODE> - -<BR> - status of a lofar observation, (mom2 <-> otdb) - e.g. being specified.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#subbands">subbands</A></B></CODE> - -<BR> - subbands that must be used (mom2 -> otdb) - e.g. [1,3,5,7]</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#timeStamp">timeStamp</A></B></CODE> - -<BR> - timestamp of status change in UTC (mom2 <-> otdb) - e.g. 2005-Dec-22 15:00:00</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#LofarObservation()">LofarObservation</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngle1()">getAngle1</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngle2()">getAngle2</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getAngleTimes()">getAngleTimes</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getArrayConfiguration()">getArrayConfiguration</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getBackend()">getBackend</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getBandSelection()">getBandSelection</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getDirectionType()">getDirectionType</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getEndTime()">getEndTime</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getMeasurementMom2Ids()">getMeasurementMom2Ids</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getMom2Id()">getMom2Id</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getRequestedDuration()">getRequestedDuration</A></B>()</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSamplingFrequency()">getSamplingFrequency</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSrgConfiguration()">getSrgConfiguration</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStartTime()">getStartTime</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStations()">getStations</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getStatus()">getStatus</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getSubbands()">getSubbands</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#getTimeStamp()">getTimeStamp</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngle1(java.lang.String)">setAngle1</A></B>(java.lang.String angle1)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngle2(java.lang.String)">setAngle2</A></B>(java.lang.String angle2)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setAngleTimes(java.lang.String)">setAngleTimes</A></B>(java.lang.String angeTimes)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setArrayConfiguration(java.lang.String)">setArrayConfiguration</A></B>(java.lang.String arrayConfgiuration)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setBackend(java.lang.String)">setBackend</A></B>(java.lang.String backend)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setBandSelection(java.lang.String)">setBandSelection</A></B>(java.lang.String bandSelection)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setDirectionType(java.lang.String)">setDirectionType</A></B>(java.lang.String directionType)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setEndTime(java.lang.String)">setEndTime</A></B>(java.lang.String endTime)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setMeasurementMom2Ids(java.lang.String)">setMeasurementMom2Ids</A></B>(java.lang.String measurementMom2Ids)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setMom2Id(int)">setMom2Id</A></B>(int mom2Id)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setRequestedDuration(int)">setRequestedDuration</A></B>(int requestedDuration)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSamplingFrequency(java.lang.Integer)">setSamplingFrequency</A></B>(java.lang.Integer samplingFrequency)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSrgConfiguration(java.lang.String)">setSrgConfiguration</A></B>(java.lang.String srgConfiguration)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStartTime(java.lang.String)">setStartTime</A></B>(java.lang.String startTime)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStations(java.lang.String)">setStations</A></B>(java.lang.String stations)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setStatus(java.lang.String)">setStatus</A></B>(java.lang.String status)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setSubbands(java.lang.String)">setSubbands</A></B>(java.lang.String subbands)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html#setTimeStamp(java.lang.String)">setTimeStamp</A></B>(java.lang.String timeStamp)</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> - -<!-- ============ 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="mom2Id"><!-- --></A><H3> -mom2Id</H3> -<PRE> -protected int <B>mom2Id</B></PRE> -<DL> -<DD>mom2Id of the lofar observation (mom2 <-> otdb) - e.g. 200 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="status"><!-- --></A><H3> -status</H3> -<PRE> -protected java.lang.String <B>status</B></PRE> -<DL> -<DD>status of a lofar observation, (mom2 <-> otdb) - e.g. being specified. -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="measurementMom2Ids"><!-- --></A><H3> -measurementMom2Ids</H3> -<PRE> -protected java.lang.String <B>measurementMom2Ids</B></PRE> -<DL> -<DD>mom2Ids of the measurements that belongs to the lofarobservation (mom2 <-> otdb) - e.g. [201,202,203] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="angleTimes"><!-- --></A><H3> -angleTimes</H3> -<PRE> -protected java.lang.String <B>angleTimes</B></PRE> -<DL> -<DD>angles times in seconds. (mom2 <-> otdb) - e.g. [+0,+30,+60] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="timeStamp"><!-- --></A><H3> -timeStamp</H3> -<PRE> -protected java.lang.String <B>timeStamp</B></PRE> -<DL> -<DD>timestamp of status change in UTC (mom2 <-> otdb) - e.g. 2005-Dec-22 15:00:00 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="subbands"><!-- --></A><H3> -subbands</H3> -<PRE> -protected java.lang.String <B>subbands</B></PRE> -<DL> -<DD>subbands that must be used (mom2 -> otdb) - e.g. [1,3,5,7] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="backend"><!-- --></A><H3> -backend</H3> -<PRE> -protected java.lang.String <B>backend</B></PRE> -<DL> -<DD>backend that must be used (mom2 -> otdb) - e.g. Transient -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="arrayConfiguration"><!-- --></A><H3> -arrayConfiguration</H3> -<PRE> -protected java.lang.String <B>arrayConfiguration</B></PRE> -<DL> -<DD>Array configuration (mom2 -> otdb) - e.g. Detailed -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="stations"><!-- --></A><H3> -stations</H3> -<PRE> -protected java.lang.String <B>stations</B></PRE> -<DL> -<DD>Stations that belongs to the array configuration (mom2 -> otdb) - e.g. [CS001,CS002] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="srgConfiguration"><!-- --></A><H3> -srgConfiguration</H3> -<PRE> -protected java.lang.String <B>srgConfiguration</B></PRE> -<DL> -<DD>SRG configuration (mom2 -> otdb) - e.g. SA1 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="samplingFrequency"><!-- --></A><H3> -samplingFrequency</H3> -<PRE> -protected java.lang.Integer <B>samplingFrequency</B></PRE> -<DL> -<DD>Sampling frequency in Hz (mom2 -> otdb) - e.g. 160000000 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="bandSelection"><!-- --></A><H3> -bandSelection</H3> -<PRE> -protected java.lang.String <B>bandSelection</B></PRE> -<DL> -<DD>Band selection (mom2 -> otdb) - e.g. LB_10_90 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="angle1"><!-- --></A><H3> -angle1</H3> -<PRE> -protected java.lang.String <B>angle1</B></PRE> -<DL> -<DD>Angle 1 (mom2 -> otdb) - e.g. [6.123662, 5.233748, 1459568] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="angle2"><!-- --></A><H3> -angle2</H3> -<PRE> -protected java.lang.String <B>angle2</B></PRE> -<DL> -<DD>Angle 2 (mom2 -> otdb) - e.g. [1.026719, 0,711018, 0384089] -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="directionType"><!-- --></A><H3> -directionType</H3> -<PRE> -protected java.lang.String <B>directionType</B></PRE> -<DL> -<DD>Direction type (mom2 -> otdb) - e.g. J2000 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="requestedDuration"><!-- --></A><H3> -requestedDuration</H3> -<PRE> -protected int <B>requestedDuration</B></PRE> -<DL> -<DD>requested duration is milliseconds (mom2 -> otdb) - e.g. 840000 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="startTime"><!-- --></A><H3> -startTime</H3> -<PRE> -protected java.lang.String <B>startTime</B></PRE> -<DL> -<DD>start time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:50:00 -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="endTime"><!-- --></A><H3> -endTime</H3> -<PRE> -protected java.lang.String <B>endTime</B></PRE> -<DL> -<DD>end time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:53:00 -<P> -<DL> -</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="LofarObservation()"><!-- --></A><H3> -LofarObservation</H3> -<PRE> -public <B>LofarObservation</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="getMom2Id()"><!-- --></A><H3> -getMom2Id</H3> -<PRE> -public int <B>getMom2Id</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setMom2Id(int)"><!-- --></A><H3> -setMom2Id</H3> -<PRE> -public void <B>setMom2Id</B>(int mom2Id)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getStatus()"><!-- --></A><H3> -getStatus</H3> -<PRE> -public java.lang.String <B>getStatus</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setStatus(java.lang.String)"><!-- --></A><H3> -setStatus</H3> -<PRE> -public void <B>setStatus</B>(java.lang.String status)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getSubbands()"><!-- --></A><H3> -getSubbands</H3> -<PRE> -public java.lang.String <B>getSubbands</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setSubbands(java.lang.String)"><!-- --></A><H3> -setSubbands</H3> -<PRE> -public void <B>setSubbands</B>(java.lang.String subbands)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getArrayConfiguration()"><!-- --></A><H3> -getArrayConfiguration</H3> -<PRE> -public java.lang.String <B>getArrayConfiguration</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setArrayConfiguration(java.lang.String)"><!-- --></A><H3> -setArrayConfiguration</H3> -<PRE> -public void <B>setArrayConfiguration</B>(java.lang.String arrayConfgiuration)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getBackend()"><!-- --></A><H3> -getBackend</H3> -<PRE> -public java.lang.String <B>getBackend</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setBackend(java.lang.String)"><!-- --></A><H3> -setBackend</H3> -<PRE> -public void <B>setBackend</B>(java.lang.String backend)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getBandSelection()"><!-- --></A><H3> -getBandSelection</H3> -<PRE> -public java.lang.String <B>getBandSelection</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setBandSelection(java.lang.String)"><!-- --></A><H3> -setBandSelection</H3> -<PRE> -public void <B>setBandSelection</B>(java.lang.String bandSelection)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getSamplingFrequency()"><!-- --></A><H3> -getSamplingFrequency</H3> -<PRE> -public java.lang.Integer <B>getSamplingFrequency</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setSamplingFrequency(java.lang.Integer)"><!-- --></A><H3> -setSamplingFrequency</H3> -<PRE> -public void <B>setSamplingFrequency</B>(java.lang.Integer samplingFrequency)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getSrgConfiguration()"><!-- --></A><H3> -getSrgConfiguration</H3> -<PRE> -public java.lang.String <B>getSrgConfiguration</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setSrgConfiguration(java.lang.String)"><!-- --></A><H3> -setSrgConfiguration</H3> -<PRE> -public void <B>setSrgConfiguration</B>(java.lang.String srgConfiguration)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getAngleTimes()"><!-- --></A><H3> -getAngleTimes</H3> -<PRE> -public java.lang.String <B>getAngleTimes</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setAngleTimes(java.lang.String)"><!-- --></A><H3> -setAngleTimes</H3> -<PRE> -public void <B>setAngleTimes</B>(java.lang.String angeTimes)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getAngle1()"><!-- --></A><H3> -getAngle1</H3> -<PRE> -public java.lang.String <B>getAngle1</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setAngle1(java.lang.String)"><!-- --></A><H3> -setAngle1</H3> -<PRE> -public void <B>setAngle1</B>(java.lang.String angle1)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getAngle2()"><!-- --></A><H3> -getAngle2</H3> -<PRE> -public java.lang.String <B>getAngle2</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setAngle2(java.lang.String)"><!-- --></A><H3> -setAngle2</H3> -<PRE> -public void <B>setAngle2</B>(java.lang.String angle2)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getDirectionType()"><!-- --></A><H3> -getDirectionType</H3> -<PRE> -public java.lang.String <B>getDirectionType</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setDirectionType(java.lang.String)"><!-- --></A><H3> -setDirectionType</H3> -<PRE> -public void <B>setDirectionType</B>(java.lang.String directionType)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getStations()"><!-- --></A><H3> -getStations</H3> -<PRE> -public java.lang.String <B>getStations</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setStations(java.lang.String)"><!-- --></A><H3> -setStations</H3> -<PRE> -public void <B>setStations</B>(java.lang.String stations)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getRequestedDuration()"><!-- --></A><H3> -getRequestedDuration</H3> -<PRE> -public int <B>getRequestedDuration</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setRequestedDuration(int)"><!-- --></A><H3> -setRequestedDuration</H3> -<PRE> -public void <B>setRequestedDuration</B>(int requestedDuration)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getEndTime()"><!-- --></A><H3> -getEndTime</H3> -<PRE> -public java.lang.String <B>getEndTime</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setEndTime(java.lang.String)"><!-- --></A><H3> -setEndTime</H3> -<PRE> -public void <B>setEndTime</B>(java.lang.String endTime)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getMeasurementMom2Ids()"><!-- --></A><H3> -getMeasurementMom2Ids</H3> -<PRE> -public java.lang.String <B>getMeasurementMom2Ids</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setMeasurementMom2Ids(java.lang.String)"><!-- --></A><H3> -setMeasurementMom2Ids</H3> -<PRE> -public void <B>setMeasurementMom2Ids</B>(java.lang.String measurementMom2Ids)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getStartTime()"><!-- --></A><H3> -getStartTime</H3> -<PRE> -public java.lang.String <B>getStartTime</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setStartTime(java.lang.String)"><!-- --></A><H3> -setStartTime</H3> -<PRE> -public void <B>setStartTime</B>(java.lang.String startTime)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getTimeStamp()"><!-- --></A><H3> -getTimeStamp</H3> -<PRE> -public java.lang.String <B>getTimeStamp</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setTimeStamp(java.lang.String)"><!-- --></A><H3> -setTimeStamp</H3> -<PRE> -public void <B>setTimeStamp</B>(java.lang.String timeStamp)</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/LofarObservation.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" target="_top"><B>FRAMES</B></A> - <A HREF="LofarObservation.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html deleted file mode 100644 index b4c037423cc29f9da6481f661a186f20e7cad765..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html +++ /dev/null @@ -1,504 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -OTDBRepository -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="OTDBRepository"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/OTDBRepository.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBRepository.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.data</FONT> -<BR> -Class OTDBRepository</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>OTDBRepository</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Repository that stores and retrieves LofarObservation objects to the jOTDB RMI interface. - It converts it to the tree structure of jOTDB and vice versa. -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>private jOTDB.jConverterInterface</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#converter">converter</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#DATE_TIME_FORMAT">DATE_TIME_FORMAT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private jOTDB.jOTDBinterface</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#remoteOTDB">remoteOTDB</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#TEMPLATE_ID">TEMPLATE_ID</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private jOTDB.jTreeMaintenanceInterface</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#tm">tm</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#OTDBRepository(java.lang.String, int)">OTDBRepository</A></B>(java.lang.String rmiServerName, - int port)</CODE> - -<BR> - Constructor that makes a connection to the specified rmi server on the specified rmi port</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.util.List</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#getLatestChanges(java.util.Date, java.util.Date)">getLatestChanges</A></B>(java.util.Date startDate, - java.util.Date endDate)</CODE> - -<BR> - Retrieve lates changes between start- en endtime</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected jOTDB.jOTDBnode</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#getNode(jOTDB.jOTDBnode, java.lang.String)">getNode</A></B>(jOTDB.jOTDBnode parentNode, - java.lang.String paramName)</CODE> - -<BR> - Retrieves node by parent node and parameter name</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#isStatusThatMustBeExported(java.lang.String)">isStatusThatMustBeExported</A></B>(java.lang.String code)</CODE> - -<BR> - Checkes if observation with a status must be exported to MoM</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#store(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">store</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Stores a lofarObservation to jOTDB</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#storeParam(jOTDB.jOTDBnode, java.lang.String, java.lang.String)">storeParam</A></B>(jOTDB.jOTDBnode parentNode, - java.lang.String paramName, - java.lang.String paramValue)</CODE> - -<BR> - Stores parameter in the tree by given parent node</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> - -<!-- ============ 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="remoteOTDB"><!-- --></A><H3> -remoteOTDB</H3> -<PRE> -private jOTDB.jOTDBinterface <B>remoteOTDB</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="tm"><!-- --></A><H3> -tm</H3> -<PRE> -private jOTDB.jTreeMaintenanceInterface <B>tm</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="converter"><!-- --></A><H3> -converter</H3> -<PRE> -private jOTDB.jConverterInterface <B>converter</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="TEMPLATE_ID"><!-- --></A><H3> -TEMPLATE_ID</H3> -<PRE> -private static final int <B>TEMPLATE_ID</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository.TEMPLATE_ID">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DATE_TIME_FORMAT"><!-- --></A><H3> -DATE_TIME_FORMAT</H3> -<PRE> -public static final java.lang.String <B>DATE_TIME_FORMAT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository.DATE_TIME_FORMAT">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="OTDBRepository(java.lang.String, int)"><!-- --></A><H3> -OTDBRepository</H3> -<PRE> -public <B>OTDBRepository</B>(java.lang.String rmiServerName, - int port) - throws java.rmi.RemoteException, - java.rmi.NotBoundException</PRE> -<DL> -<DD>Constructor that makes a connection to the specified rmi server on the specified rmi port -<P> -<DL> -<DT><B>Parameters:</B><DD><CODE>rmiServerName</CODE> - <DD><CODE>port</CODE> - -<DT><B>Throws:</B> -<DD><CODE>java.rmi.RemoteException</CODE> -<DD><CODE>java.rmi.NotBoundException</CODE></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="store(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -store</H3> -<PRE> -public void <B>store</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation) - throws java.rmi.RemoteException</PRE> -<DL> -<DD>Stores a lofarObservation to jOTDB -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>lofarObservation</CODE> - -<DT><B>Throws:</B> -<DD><CODE>java.rmi.RemoteException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="storeParam(jOTDB.jOTDBnode, java.lang.String, java.lang.String)"><!-- --></A><H3> -storeParam</H3> -<PRE> -protected void <B>storeParam</B>(jOTDB.jOTDBnode parentNode, - java.lang.String paramName, - java.lang.String paramValue) - throws java.rmi.RemoteException</PRE> -<DL> -<DD>Stores parameter in the tree by given parent node -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>parentNode</CODE> - parent node<DD><CODE>paramName</CODE> - parameter name<DD><CODE>paramValue</CODE> - parameter value -<DT><B>Throws:</B> -<DD><CODE>java.rmi.RemoteException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getNode(jOTDB.jOTDBnode, java.lang.String)"><!-- --></A><H3> -getNode</H3> -<PRE> -protected jOTDB.jOTDBnode <B>getNode</B>(jOTDB.jOTDBnode parentNode, - java.lang.String paramName) - throws java.rmi.RemoteException</PRE> -<DL> -<DD>Retrieves node by parent node and parameter name -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>parentNode</CODE> - parent node<DD><CODE>paramName</CODE> - name of the parameter -<DT><B>Returns:</B><DD>node -<DT><B>Throws:</B> -<DD><CODE>java.rmi.RemoteException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getLatestChanges(java.util.Date, java.util.Date)"><!-- --></A><H3> -getLatestChanges</H3> -<PRE> -public java.util.List <B>getLatestChanges</B>(java.util.Date startDate, - java.util.Date endDate) - throws java.rmi.RemoteException</PRE> -<DL> -<DD>Retrieve lates changes between start- en endtime -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>startDate</CODE> - start time<DD><CODE>endDate</CODE> - end time -<DT><B>Returns:</B><DD>List of lofarObservation objects -<DT><B>Throws:</B> -<DD><CODE>java.rmi.RemoteException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="isStatusThatMustBeExported(java.lang.String)"><!-- --></A><H3> -isStatusThatMustBeExported</H3> -<PRE> -protected boolean <B>isStatusThatMustBeExported</B>(java.lang.String code)</PRE> -<DL> -<DD>Checkes if observation with a status must be exported to MoM -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>code</CODE> - -<DT><B>Returns:</B><DD>true, if it must be exported</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/OTDBRepository.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBRepository.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html deleted file mode 100644 index 71299bbb59135f5d3a3ae7ab90e44ae7dd9a41ba..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html +++ /dev/null @@ -1,348 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/data/\class-useLofarObservation.html" target="_top"><B>FRAMES</B></A> - <A HREF="LofarObservation.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>nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.data"><B>nl.astron.lofar.odtb.mom2otdbadapter.data</B></A></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</B></A></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.data"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</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>OTDBRepository.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html#store(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">store</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Stores a lofarObservation to jOTDB</TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A> that return <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getLofarObservation(org.w3c.dom.Document)">getLofarObservation</A></B>(org.w3c.dom.Document document)</CODE> - -<BR> - Parse a xml document and returns a lofar obseravation</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseArrayConfiguration(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseArrayConfiguration</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the arrayConfiguration xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseChildren(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseChildren</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the children xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseCurrentStatus(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseCurrentStatus</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the currentStatus xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseItem(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseItem</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the item xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurement(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseMeasurement</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the measurement xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurementAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseMeasurementAttributes</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the measurementAttributes xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseObservationAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseObservationAttributes</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the observationAttributes xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLParser.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseStations(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseStations</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the stations xml element.</TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLGenerator.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addChildren(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">addChildren</A></B>(org.w3c.dom.Element parent, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>XMLGenerator.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addObservation(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">addObservation</A></B>(org.w3c.dom.Element observationElement, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></CODE></FONT></TD> -<TD><CODE><B>OTDBListener.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#convertToTask(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">convertToTask</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Converts a observation to a task using the xml generation</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected org.w3c.dom.Document</CODE></FONT></TD> -<TD><CODE><B>XMLGenerator.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationDocument(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">getObservationDocument</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - Generates XML Document from lofarObservation</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>XMLGenerator.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationXml(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">getObservationXml</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - Generates XML String from LofarObservaiton</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/data/\class-useLofarObservation.html" target="_top"><B>FRAMES</B></A> - <A HREF="LofarObservation.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/OTDBRepository.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/OTDBRepository.html deleted file mode 100644 index e7228b6056d44c621ec8aceb1ffc9c8674aba3b3..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/OTDBRepository.html +++ /dev/null @@ -1,250 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/data/\class-useOTDBRepository.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBRepository.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>nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</B></A></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</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">Fields in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A> declared as <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B>Mom2Listener.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#repository">repository</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B>ProcessMom2Connection.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#repository">repository</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">Constructors in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#Mom2Listener(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">Mom2Listener</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</CODE> - -<BR> - Constructor</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#ProcessMom2Connection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)">ProcessMom2Connection</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository, - java.net.Socket client)</CODE> - -<BR> - Constructor</TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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">Fields in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> declared as <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B>OTDBListener.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#repository">repository</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">Constructors in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#OTDBListener(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, int, nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">OTDBListener</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - int milliseconds, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</CODE> - -<BR> - Constructor</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/data/\class-useOTDBRepository.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBRepository.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-frame.html deleted file mode 100644 index d31303d32420e2ae476a6cb53c62c574014e2c8e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.data -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.data package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameTitleFont"> -<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html" target="classFrame">nl.astron.lofar.odtb.mom2otdbadapter.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="LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data" target="classFrame">LofarObservation</A> -<BR> -<A HREF="OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data" target="classFrame">OTDBRepository</A></FONT></TD> -</TR> -</TABLE> - - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html deleted file mode 100644 index f410101d3aafbde8d2810caa519d5d1c5b28a440..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html +++ /dev/null @@ -1,159 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.data -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.data package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.data"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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 nl.astron.lofar.odtb.mom2otdbadapter.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></B></TD> -<TD>This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></B></TD> -<TD>Repository that stores and retrieves LofarObservation objects to the jOTDB RMI interface.</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html deleted file mode 100644 index 8585d713d122962e61958d269647ea083b17b2a9..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html +++ /dev/null @@ -1,150 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.data Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.data Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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 nl.astron.lofar.odtb.mom2otdbadapter.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">nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>LofarObservation</B></A> (implements java.io.Serializable) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>OTDBRepository</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-use.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-use.html deleted file mode 100644 index 8894d5da9bbf0c16b128a1d5ce48cf1b029b0bfa..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/data/package-use.html +++ /dev/null @@ -1,219 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.data -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.data"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/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>nl.astron.lofar.odtb.mom2otdbadapter.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.data"><B>nl.astron.lofar.odtb.mom2otdbadapter.data</B></A></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</B></A></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.data"><!-- --></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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A> used by <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html#nl.astron.lofar.odtb.mom2otdbadapter.data"><B>LofarObservation</B></A></B> - -<BR> - This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB</TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><!-- --></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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A> used by <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>LofarObservation</B></A></B> - -<BR> - This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/OTDBRepository.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>OTDBRepository</B></A></B> - -<BR> - Repository that stores and retrieves LofarObservation objects to the jOTDB RMI interface.</TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A> used by <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/LofarObservation.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>LofarObservation</B></A></B> - -<BR> - This data class is a mapping to the lofar observation data of OTDB - It contains data that will store in OTDB</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/class-use/OTDBRepository.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>OTDBRepository</B></A></B> - -<BR> - Repository that stores and retrieves LofarObservation objects to the jOTDB RMI interface.</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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html deleted file mode 100644 index 4a2e56a65692b108838f65b9025f7c29235ae544..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html +++ /dev/null @@ -1,319 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -Mom2Listener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Mom2Listener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Mom2Listener.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2Listener.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class Mom2Listener</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>Mom2Listener</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Listen at port 4444 for mom request -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#repository">repository</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#Mom2Listener(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">Mom2Listener</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</CODE> - -<BR> - Constructor</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> void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html#start()">start</A></B>()</CODE> - -<BR> - Starts a ServerSocket on port 4444 - If a clients connect, it starts a new class ProcessMom2Connection</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> - -<!-- ============ 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="repository"><!-- --></A><H3> -repository</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> <B>repository</B></PRE> -<DL> -<DL> -</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="Mom2Listener(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)"><!-- --></A><H3> -Mom2Listener</H3> -<PRE> -public <B>Mom2Listener</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</PRE> -<DL> -<DD>Constructor -<P> -<DL> -<DT><B>Parameters:</B><DD><CODE>repository</CODE> - OTDBRepository to use</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="start()"><!-- --></A><H3> -start</H3> -<PRE> -public void <B>start</B>()</PRE> -<DL> -<DD>Starts a ServerSocket on port 4444 - If a clients connect, it starts a new class ProcessMom2Connection -<P> -<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/Mom2Listener.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2Listener.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html deleted file mode 100644 index af591424dc007a5d9495d94042b2f16916ac0f16..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html +++ /dev/null @@ -1,410 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -Mom2OtdbConverter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Mom2OtdbConverter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Mom2OtdbConverter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2OtdbConverter.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class Mom2OtdbConverter</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>Mom2OtdbConverter</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Converts mom2 values to otdb values -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>private static double</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#MAX_BANDWIDTH">MAX_BANDWIDTH</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#TOTAL_SUBBANDS">TOTAL_SUBBANDS</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#Mom2OtdbConverter()">Mom2OtdbConverter</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>static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBBandSelection(java.lang.String)">getOTDBBandSelection</A></B>(java.lang.String filter)</CODE> - -<BR> - Calculate bandselection from filter</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>static java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBFrequency(java.lang.String)">getOTDBFrequency</A></B>(java.lang.String frequency)</CODE> - -<BR> - Calculate frequency from mom frequency</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>static java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBSamplingFrequency(java.lang.String)">getOTDBSamplingFrequency</A></B>(java.lang.String filter)</CODE> - -<BR> - Calculate sampling frequency</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBStatus(java.lang.String)">getOTDBStatus</A></B>(java.lang.String status)</CODE> - -<BR> - Convert OTDB status from mom status</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html#getOTDBSubbands(java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer)">getOTDBSubbands</A></B>(java.lang.Integer samplingFrequency, - java.lang.Integer numberOfBands, - java.lang.String subbandPlacement, - java.lang.Integer startFrequency, - java.lang.Integer spacing)</CODE> - -<BR> - Calculate an array of subbands</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> - -<!-- ============ 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="MAX_BANDWIDTH"><!-- --></A><H3> -MAX_BANDWIDTH</H3> -<PRE> -private static final double <B>MAX_BANDWIDTH</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter.MAX_BANDWIDTH">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="TOTAL_SUBBANDS"><!-- --></A><H3> -TOTAL_SUBBANDS</H3> -<PRE> -private static final int <B>TOTAL_SUBBANDS</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter.TOTAL_SUBBANDS">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="Mom2OtdbConverter()"><!-- --></A><H3> -Mom2OtdbConverter</H3> -<PRE> -public <B>Mom2OtdbConverter</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="getOTDBSubbands(java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer)"><!-- --></A><H3> -getOTDBSubbands</H3> -<PRE> -public static java.lang.String <B>getOTDBSubbands</B>(java.lang.Integer samplingFrequency, - java.lang.Integer numberOfBands, - java.lang.String subbandPlacement, - java.lang.Integer startFrequency, - java.lang.Integer spacing)</PRE> -<DL> -<DD>Calculate an array of subbands -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>samplingFrequency</CODE> - sampling frequency in Hz<DD><CODE>numberOfBands</CODE> - number of bands<DD><CODE>subbandPlacement</CODE> - kind of subband placement (e.g. contiguous, scattered)<DD><CODE>startFrequency</CODE> - start frequency in Hz<DD><CODE>spacing</CODE> - spacing in bands -<DT><B>Returns:</B><DD>subbands e.g. [12,34]</DL> -</DD> -</DL> -<HR> - -<A NAME="getOTDBBandSelection(java.lang.String)"><!-- --></A><H3> -getOTDBBandSelection</H3> -<PRE> -public static java.lang.String <B>getOTDBBandSelection</B>(java.lang.String filter)</PRE> -<DL> -<DD>Calculate bandselection from filter -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>filter</CODE> - -<DT><B>Returns:</B><DD>band selecitons</DL> -</DD> -</DL> -<HR> - -<A NAME="getOTDBSamplingFrequency(java.lang.String)"><!-- --></A><H3> -getOTDBSamplingFrequency</H3> -<PRE> -public static java.lang.Integer <B>getOTDBSamplingFrequency</B>(java.lang.String filter)</PRE> -<DL> -<DD>Calculate sampling frequency -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>filter</CODE> - -<DT><B>Returns:</B><DD>sampling frequency in Hz</DL> -</DD> -</DL> -<HR> - -<A NAME="getOTDBFrequency(java.lang.String)"><!-- --></A><H3> -getOTDBFrequency</H3> -<PRE> -public static java.lang.Integer <B>getOTDBFrequency</B>(java.lang.String frequency)</PRE> -<DL> -<DD>Calculate frequency from mom frequency -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>frequency</CODE> - Mom2 frequency -<DT><B>Returns:</B><DD>OTDB frequency</DL> -</DD> -</DL> -<HR> - -<A NAME="getOTDBStatus(java.lang.String)"><!-- --></A><H3> -getOTDBStatus</H3> -<PRE> -public static java.lang.String <B>getOTDBStatus</B>(java.lang.String status)</PRE> -<DL> -<DD>Convert OTDB status from mom status -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>status</CODE> - Mom2 status -<DT><B>Returns:</B><DD>OTDB status</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/Mom2OtdbConverter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2OtdbConverter.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html deleted file mode 100644 index b82755e8bed9b6804f5ba9d02ddbb9f319cf02c5..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html +++ /dev/null @@ -1,485 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 13:19:15 CET 2006 --> -<TITLE> -ProcessConnection -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="ProcessConnection"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/ProcessConnection.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessConnection.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class ProcessConnection</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Thread - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.lang.Runnable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>ProcessConnection</B><DT>extends java.lang.Thread</DL> -</PRE> - -<P> -<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_java.lang.Thread"><!-- --></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 java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</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> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.net.Socket</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#client">client</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.io.BufferedReader</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#in">in</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.io.PrintWriter</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#out">out</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#repository">repository</A></B></CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="fields_inherited_from_class_java.lang.Thread"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Fields inherited from class java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#ProcessConnection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)">ProcessConnection</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository, - java.net.Socket client)</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>protected org.w3c.dom.Document</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#convertStringToDocument(java.lang.String)">convertStringToDocument</A></B>(java.lang.String myXML)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#finalize()">finalize</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#getResultXml(java.lang.String)">getResultXml</A></B>(java.lang.String errors)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#processInput(java.lang.String)">processInput</A></B>(java.lang.String input)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html#run()">run</A></B>()</CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_java.lang.Thread"><!-- --></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.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</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>clone, equals, getClass, hashCode, notify, notifyAll, 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="in"><!-- --></A><H3> -in</H3> -<PRE> -private java.io.BufferedReader <B>in</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="out"><!-- --></A><H3> -out</H3> -<PRE> -private java.io.PrintWriter <B>out</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="client"><!-- --></A><H3> -client</H3> -<PRE> -private java.net.Socket <B>client</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="repository"><!-- --></A><H3> -repository</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> <B>repository</B></PRE> -<DL> -<DL> -</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="ProcessConnection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)"><!-- --></A><H3> -ProcessConnection</H3> -<PRE> -public <B>ProcessConnection</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository, - java.net.Socket client)</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="run()"><!-- --></A><H3> -run</H3> -<PRE> -public void <B>run</B>()</PRE> -<DL> -<DD><DL> -<DT><B>Specified by:</B><DD><CODE>run</CODE> in interface <CODE>java.lang.Runnable</CODE><DT><B>Overrides:</B><DD><CODE>run</CODE> in class <CODE>java.lang.Thread</CODE></DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="processInput(java.lang.String)"><!-- --></A><H3> -processInput</H3> -<PRE> -protected java.lang.String <B>processInput</B>(java.lang.String input)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="convertStringToDocument(java.lang.String)"><!-- --></A><H3> -convertStringToDocument</H3> -<PRE> -protected org.w3c.dom.Document <B>convertStringToDocument</B>(java.lang.String myXML) - throws java.lang.Exception</PRE> -<DL> -<DD><DL> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getResultXml(java.lang.String)"><!-- --></A><H3> -getResultXml</H3> -<PRE> -public java.lang.String <B>getResultXml</B>(java.lang.String errors)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="finalize()"><!-- --></A><H3> -finalize</H3> -<PRE> -protected void <B>finalize</B>()</PRE> -<DL> -<DD><DL> -<DT><B>Overrides:</B><DD><CODE>finalize</CODE> in class <CODE>java.lang.Object</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/ProcessConnection.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessConnection.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html deleted file mode 100644 index 2da424dedca436714a140fd638db694e3cb3b49c..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html +++ /dev/null @@ -1,509 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -ProcessMom2Connection -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="ProcessMom2Connection"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/ProcessMom2Connection.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessMom2Connection.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class ProcessMom2Connection</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Thread - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.lang.Runnable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>ProcessMom2Connection</B><DT>extends java.lang.Thread</DL> -</PRE> - -<P> -Process a mom2 connection -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -</DL> -<HR> - -<P> -<!-- ======== NESTED CLASS SUMMARY ======== --> - -<A NAME="nested_class_summary"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> -<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> -<B>Nested Class Summary</B></FONT></TH> -</TR> -</TABLE> - <A NAME="nested_classes_inherited_from_class_java.lang.Thread"><!-- --></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 java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</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> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.net.Socket</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#client">client</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.io.BufferedReader</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#in">in</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.io.PrintWriter</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#out">out</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#repository">repository</A></B></CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="fields_inherited_from_class_java.lang.Thread"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Fields inherited from class java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#ProcessMom2Connection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)">ProcessMom2Connection</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository, - java.net.Socket client)</CODE> - -<BR> - Constructor</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>protected org.w3c.dom.Document</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#convertStringToDocument(java.lang.String)">convertStringToDocument</A></B>(java.lang.String myXML)</CODE> - -<BR> - Convert a xml-string to a Document</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#finalize()">finalize</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#getResultXml(java.lang.String)">getResultXml</A></B>(java.lang.String errors)</CODE> - -<BR> - Creates a result xml by given erros</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#processInput(java.lang.String)">processInput</A></B>(java.lang.String input)</CODE> - -<BR> - It process the input and stores it to repository</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html#run()">run</A></B>()</CODE> - -<BR> - Starts the thread ProcessMom2Connection.</TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_java.lang.Thread"><!-- --></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.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</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>clone, equals, getClass, hashCode, notify, notifyAll, 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="in"><!-- --></A><H3> -in</H3> -<PRE> -private java.io.BufferedReader <B>in</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="out"><!-- --></A><H3> -out</H3> -<PRE> -private java.io.PrintWriter <B>out</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="client"><!-- --></A><H3> -client</H3> -<PRE> -private java.net.Socket <B>client</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="repository"><!-- --></A><H3> -repository</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> <B>repository</B></PRE> -<DL> -<DL> -</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="ProcessMom2Connection(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository, java.net.Socket)"><!-- --></A><H3> -ProcessMom2Connection</H3> -<PRE> -public <B>ProcessMom2Connection</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository, - java.net.Socket client)</PRE> -<DL> -<DD>Constructor -<P> -<DL> -<DT><B>Parameters:</B><DD><CODE>repository</CODE> - OTDBRepository with connection to jotdb<DD><CODE>client</CODE> - Socket with the connection to mom</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="run()"><!-- --></A><H3> -run</H3> -<PRE> -public void <B>run</B>()</PRE> -<DL> -<DD>Starts the thread ProcessMom2Connection. - It processes mom2 input and writes output to mom2. -<P> -<DD><DL> -<DT><B>Specified by:</B><DD><CODE>run</CODE> in interface <CODE>java.lang.Runnable</CODE><DT><B>Overrides:</B><DD><CODE>run</CODE> in class <CODE>java.lang.Thread</CODE></DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="processInput(java.lang.String)"><!-- --></A><H3> -processInput</H3> -<PRE> -protected java.lang.String <B>processInput</B>(java.lang.String input)</PRE> -<DL> -<DD>It process the input and stores it to repository -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>input</CODE> - input xml -<DT><B>Returns:</B><DD>result xml</DL> -</DD> -</DL> -<HR> - -<A NAME="convertStringToDocument(java.lang.String)"><!-- --></A><H3> -convertStringToDocument</H3> -<PRE> -protected org.w3c.dom.Document <B>convertStringToDocument</B>(java.lang.String myXML) - throws java.lang.Exception</PRE> -<DL> -<DD>Convert a xml-string to a Document -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>myXML</CODE> - xml string -<DT><B>Returns:</B><DD>Document -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getResultXml(java.lang.String)"><!-- --></A><H3> -getResultXml</H3> -<PRE> -public java.lang.String <B>getResultXml</B>(java.lang.String errors)</PRE> -<DL> -<DD>Creates a result xml by given erros -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>errors</CODE> - Errors -<DT><B>Returns:</B><DD>result xml</DL> -</DD> -</DL> -<HR> - -<A NAME="finalize()"><!-- --></A><H3> -finalize</H3> -<PRE> -protected void <B>finalize</B>()</PRE> -<DL> -<DD><DL> -<DT><B>Overrides:</B><DD><CODE>finalize</CODE> in class <CODE>java.lang.Object</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/ProcessMom2Connection.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessMom2Connection.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html deleted file mode 100644 index 36ac6ba7111c2e20a1e625ed7efd12ea6db4fefd..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html +++ /dev/null @@ -1,303 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 13:19:15 CET 2006 --> -<TITLE> -Server -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Server"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Server.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" target="_top"><B>FRAMES</B></A> - <A HREF="Server.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class Server</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>Server</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>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html#repository">repository</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html#Server(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">Server</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</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> void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html#start()">start</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> - -<!-- ============ 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="repository"><!-- --></A><H3> -repository</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> <B>repository</B></PRE> -<DL> -<DL> -</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="Server(nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)"><!-- --></A><H3> -Server</H3> -<PRE> -public <B>Server</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</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="start()"><!-- --></A><H3> -start</H3> -<PRE> -public void <B>start</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/Server.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" target="_top"><B>FRAMES</B></A> - <A HREF="Server.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html deleted file mode 100644 index 1ced11962ead4860eab9a1ed12b95f96ed82bd77..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html +++ /dev/null @@ -1,1095 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -XMLParser -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="XMLParser"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/XMLParser.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLParser.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</FONT> -<BR> -Class XMLParser</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>XMLParser</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -parse the XML input from MoM and returns a LofarObservations. - If needed it used the Mom2OtdbConverter to convert values to otdb values -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ARRAY_CONFIGURATION">ARRAY_CONFIGURATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BACKEND">BACKEND</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#BAND_FILTER">BAND_FILTER</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CHILDREN">CHILDREN</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#CURRENT_STATUS">CURRENT_STATUS</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEC">DEC</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DEFAULT_ARRAY_CONFIGURATION">DEFAULT_ARRAY_CONFIGURATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DETAILED_ARRAY_CONFIGURATION">DETAILED_ARRAY_CONFIGURATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#DIRECTION_TYPE">DIRECTION_TYPE</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#ITEM">ITEM</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT">MEASUREMENT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MEASUREMENT_ATTRIBUTES">MEASUREMENT_ATTRIBUTES</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#MOM2_ID">MOM2_ID</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#NUMBER_OF_BANDS">NUMBER_OF_BANDS</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION">OBSERVATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#OBSERVATION_ATTRIBUTES">OBSERVATION_ATTRIBUTES</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#PREFIX">PREFIX</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#RA">RA</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#REQUESTED_DURATION">REQUESTED_DURATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SPACING">SPACING</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SRG_CONFIGURATION">SRG_CONFIGURATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#START_FREQUENCY">START_FREQUENCY</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#STATION">STATION</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#SUBBAND_PLACEMENT">SUBBAND_PLACEMENT</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#XMLParser()">XMLParser</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>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#equal(org.w3c.dom.Node, java.lang.String)">equal</A></B>(org.w3c.dom.Node node, - java.lang.String nodeName)</CODE> - -<BR> - The equal method compares if an node has the given name</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#equalIgnorePrefix(org.w3c.dom.Node, java.lang.String)">equalIgnorePrefix</A></B>(org.w3c.dom.Node node, - java.lang.String nodeName)</CODE> - -<BR> - Compares if a node has the given name, ignoring the prefix of the node</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#formatStatus(java.lang.String)">formatStatus</A></B>(java.lang.String status)</CODE> - -<BR> - Retrieve status from status element</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getAttribute(org.w3c.dom.NamedNodeMap, java.lang.String)">getAttribute</A></B>(org.w3c.dom.NamedNodeMap map, - java.lang.String name)</CODE> - -<BR> - Retrieve an attribute value from a attribute map</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getLofarObservation(org.w3c.dom.Document)">getLofarObservation</A></B>(org.w3c.dom.Document document)</CODE> - -<BR> - Parse a xml document and returns a lofar obseravation</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.Integer</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getSeconds(java.lang.String)">getSeconds</A></B>(java.lang.String string)</CODE> - -<BR> - Get seconds from a xml duration string</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#getValue(org.w3c.dom.Node)">getValue</A></B>(org.w3c.dom.Node node)</CODE> - -<BR> - The getValue method returns the value of an node</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseArrayConfiguration(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseArrayConfiguration</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the arrayConfiguration xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseChildren(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseChildren</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the children xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseCurrentStatus(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseCurrentStatus</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the currentStatus xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseItem(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseItem</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the item xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurement(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseMeasurement</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the measurement xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseMeasurementAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseMeasurementAttributes</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the measurementAttributes xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseObservationAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseObservationAttributes</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the observationAttributes xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#parseStations(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">parseStations</A></B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Parse the stations xml element.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#removePrefix(org.w3c.dom.Node)">removePrefix</A></B>(org.w3c.dom.Node node)</CODE> - -<BR> - Returns the node name without prefix</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html#withPrefix(java.lang.String)">withPrefix</A></B>(java.lang.String string)</CODE> - -<BR> - add prefix to a string</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> - -<!-- ============ 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="PREFIX"><!-- --></A><H3> -PREFIX</H3> -<PRE> -private static final java.lang.String <B>PREFIX</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.PREFIX">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="MOM2_ID"><!-- --></A><H3> -MOM2_ID</H3> -<PRE> -private static final java.lang.String <B>MOM2_ID</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MOM2_ID">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="OBSERVATION"><!-- --></A><H3> -OBSERVATION</H3> -<PRE> -private static final java.lang.String <B>OBSERVATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.OBSERVATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="CURRENT_STATUS"><!-- --></A><H3> -CURRENT_STATUS</H3> -<PRE> -private static final java.lang.String <B>CURRENT_STATUS</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.CURRENT_STATUS">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="OBSERVATION_ATTRIBUTES"><!-- --></A><H3> -OBSERVATION_ATTRIBUTES</H3> -<PRE> -private static final java.lang.String <B>OBSERVATION_ATTRIBUTES</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.OBSERVATION_ATTRIBUTES">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="ARRAY_CONFIGURATION"><!-- --></A><H3> -ARRAY_CONFIGURATION</H3> -<PRE> -private static final java.lang.String <B>ARRAY_CONFIGURATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.ARRAY_CONFIGURATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DEFAULT_ARRAY_CONFIGURATION"><!-- --></A><H3> -DEFAULT_ARRAY_CONFIGURATION</H3> -<PRE> -private static final java.lang.String <B>DEFAULT_ARRAY_CONFIGURATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DEFAULT_ARRAY_CONFIGURATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DETAILED_ARRAY_CONFIGURATION"><!-- --></A><H3> -DETAILED_ARRAY_CONFIGURATION</H3> -<PRE> -private static final java.lang.String <B>DETAILED_ARRAY_CONFIGURATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DETAILED_ARRAY_CONFIGURATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="STATION"><!-- --></A><H3> -STATION</H3> -<PRE> -private static final java.lang.String <B>STATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.STATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="SRG_CONFIGURATION"><!-- --></A><H3> -SRG_CONFIGURATION</H3> -<PRE> -private static final java.lang.String <B>SRG_CONFIGURATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SRG_CONFIGURATION">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="BAND_FILTER"><!-- --></A><H3> -BAND_FILTER</H3> -<PRE> -private static final java.lang.String <B>BAND_FILTER</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.BAND_FILTER">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="SUBBAND_PLACEMENT"><!-- --></A><H3> -SUBBAND_PLACEMENT</H3> -<PRE> -private static final java.lang.String <B>SUBBAND_PLACEMENT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SUBBAND_PLACEMENT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="NUMBER_OF_BANDS"><!-- --></A><H3> -NUMBER_OF_BANDS</H3> -<PRE> -private static final java.lang.String <B>NUMBER_OF_BANDS</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.NUMBER_OF_BANDS">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="START_FREQUENCY"><!-- --></A><H3> -START_FREQUENCY</H3> -<PRE> -private static final java.lang.String <B>START_FREQUENCY</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.START_FREQUENCY">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="SPACING"><!-- --></A><H3> -SPACING</H3> -<PRE> -private static final java.lang.String <B>SPACING</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.SPACING">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="BACKEND"><!-- --></A><H3> -BACKEND</H3> -<PRE> -private static final java.lang.String <B>BACKEND</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.BACKEND">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="CHILDREN"><!-- --></A><H3> -CHILDREN</H3> -<PRE> -private static final java.lang.String <B>CHILDREN</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.CHILDREN">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="ITEM"><!-- --></A><H3> -ITEM</H3> -<PRE> -private static final java.lang.String <B>ITEM</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.ITEM">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="MEASUREMENT"><!-- --></A><H3> -MEASUREMENT</H3> -<PRE> -private static final java.lang.String <B>MEASUREMENT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MEASUREMENT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="MEASUREMENT_ATTRIBUTES"><!-- --></A><H3> -MEASUREMENT_ATTRIBUTES</H3> -<PRE> -private static final java.lang.String <B>MEASUREMENT_ATTRIBUTES</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.MEASUREMENT_ATTRIBUTES">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="RA"><!-- --></A><H3> -RA</H3> -<PRE> -private static final java.lang.String <B>RA</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.RA">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DEC"><!-- --></A><H3> -DEC</H3> -<PRE> -private static final java.lang.String <B>DEC</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DEC">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DIRECTION_TYPE"><!-- --></A><H3> -DIRECTION_TYPE</H3> -<PRE> -private static final java.lang.String <B>DIRECTION_TYPE</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.DIRECTION_TYPE">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="REQUESTED_DURATION"><!-- --></A><H3> -REQUESTED_DURATION</H3> -<PRE> -private static final java.lang.String <B>REQUESTED_DURATION</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser.REQUESTED_DURATION">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="XMLParser()"><!-- --></A><H3> -XMLParser</H3> -<PRE> -public <B>XMLParser</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="getLofarObservation(org.w3c.dom.Document)"><!-- --></A><H3> -getLofarObservation</H3> -<PRE> -public <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> <B>getLofarObservation</B>(org.w3c.dom.Document document)</PRE> -<DL> -<DD>Parse a xml document and returns a lofar obseravation -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>document</CODE> - xml document -<DT><B>Returns:</B><DD>LofarObservation</DL> -</DD> -</DL> -<HR> - -<A NAME="parseObservationAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseObservationAttributes</H3> -<PRE> -protected void <B>parseObservationAttributes</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the observationAttributes xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseArrayConfiguration(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseArrayConfiguration</H3> -<PRE> -protected void <B>parseArrayConfiguration</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the arrayConfiguration xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseStations(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseStations</H3> -<PRE> -protected void <B>parseStations</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the stations xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseCurrentStatus(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseCurrentStatus</H3> -<PRE> -protected void <B>parseCurrentStatus</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the currentStatus xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseChildren(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseChildren</H3> -<PRE> -protected void <B>parseChildren</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the children xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseItem(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseItem</H3> -<PRE> -protected void <B>parseItem</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the item xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseMeasurement(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseMeasurement</H3> -<PRE> -protected void <B>parseMeasurement</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the measurement xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="parseMeasurementAttributes(org.w3c.dom.Node, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -parseMeasurementAttributes</H3> -<PRE> -protected void <B>parseMeasurementAttributes</B>(org.w3c.dom.Node node, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Parse the measurementAttributes xml element. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - xml node that must be parsed<DD><CODE>lofarObservation</CODE> - LofarObservation that must be filled</DL> -</DD> -</DL> -<HR> - -<A NAME="getAttribute(org.w3c.dom.NamedNodeMap, java.lang.String)"><!-- --></A><H3> -getAttribute</H3> -<PRE> -protected java.lang.String <B>getAttribute</B>(org.w3c.dom.NamedNodeMap map, - java.lang.String name)</PRE> -<DL> -<DD>Retrieve an attribute value from a attribute map -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>map</CODE> - attribute map<DD><CODE>name</CODE> - name of the attribute -<DT><B>Returns:</B><DD>attribute value</DL> -</DD> -</DL> -<HR> - -<A NAME="withPrefix(java.lang.String)"><!-- --></A><H3> -withPrefix</H3> -<PRE> -protected java.lang.String <B>withPrefix</B>(java.lang.String string)</PRE> -<DL> -<DD>add prefix to a string -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>string</CODE> - input string -<DT><B>Returns:</B><DD>string with prefix</DL> -</DD> -</DL> -<HR> - -<A NAME="getValue(org.w3c.dom.Node)"><!-- --></A><H3> -getValue</H3> -<PRE> -protected java.lang.String <B>getValue</B>(org.w3c.dom.Node node)</PRE> -<DL> -<DD>The getValue method returns the value of an node -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - -<DT><B>Returns:</B><DD>value of the node</DL> -</DD> -</DL> -<HR> - -<A NAME="getSeconds(java.lang.String)"><!-- --></A><H3> -getSeconds</H3> -<PRE> -protected java.lang.Integer <B>getSeconds</B>(java.lang.String string)</PRE> -<DL> -<DD>Get seconds from a xml duration string -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>string</CODE> - duration string -<DT><B>Returns:</B><DD>seconds</DL> -</DD> -</DL> -<HR> - -<A NAME="equal(org.w3c.dom.Node, java.lang.String)"><!-- --></A><H3> -equal</H3> -<PRE> -protected boolean <B>equal</B>(org.w3c.dom.Node node, - java.lang.String nodeName)</PRE> -<DL> -<DD>The equal method compares if an node has the given name -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - <DD><CODE>nodeName</CODE> - -<DT><B>Returns:</B><DD>true if equals</DL> -</DD> -</DL> -<HR> - -<A NAME="equalIgnorePrefix(org.w3c.dom.Node, java.lang.String)"><!-- --></A><H3> -equalIgnorePrefix</H3> -<PRE> -protected boolean <B>equalIgnorePrefix</B>(org.w3c.dom.Node node, - java.lang.String nodeName)</PRE> -<DL> -<DD>Compares if a node has the given name, ignoring the prefix of the node -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - <DD><CODE>nodeName</CODE> - -<DT><B>Returns:</B><DD>true, if equals</DL> -</DD> -</DL> -<HR> - -<A NAME="removePrefix(org.w3c.dom.Node)"><!-- --></A><H3> -removePrefix</H3> -<PRE> -protected java.lang.String <B>removePrefix</B>(org.w3c.dom.Node node)</PRE> -<DL> -<DD>Returns the node name without prefix -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - -<DT><B>Returns:</B><DD>node name withoud prefix</DL> -</DD> -</DL> -<HR> - -<A NAME="formatStatus(java.lang.String)"><!-- --></A><H3> -formatStatus</H3> -<PRE> -protected java.lang.String <B>formatStatus</B>(java.lang.String status)</PRE> -<DL> -<DD>Retrieve status from status element -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>status</CODE> - status element string -<DT><B>Returns:</B><DD>status</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/XMLParser.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLParser.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2Listener.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2Listener.html deleted file mode 100644 index 8a0f42cb92ac14a28316aacc73c2642194896888..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2Listener.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useMom2Listener.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2Listener.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2Listener -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useMom2Listener.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2Listener.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2OtdbConverter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2OtdbConverter.html deleted file mode 100644 index fd58b6b2902357874322ef725ef3270699589a3c..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Mom2OtdbConverter.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2OtdbConverter.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Mom2OtdbConverter -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Mom2OtdbConverter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessConnection.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessConnection.html deleted file mode 100644 index 9468b567fe098d08df4eb46d3419a6970a74a3da..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessConnection.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 13:19:16 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useProcessConnection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessConnection.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessConnection -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessConnection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useProcessConnection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessConnection.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessMom2Connection.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessMom2Connection.html deleted file mode 100644 index ad5dc733502219eb42bac6aa7381aedfdbb7c2ae..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/ProcessMom2Connection.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useProcessMom2Connection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessMom2Connection.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.ProcessMom2Connection -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useProcessMom2Connection.html" target="_top"><B>FRAMES</B></A> - <A HREF="ProcessMom2Connection.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Server.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Server.html deleted file mode 100644 index 9e08256a26789bfb13627673b014eda23067e409..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/Server.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 13:19:16 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useServer.html" target="_top"><B>FRAMES</B></A> - <A HREF="Server.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.Server -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Server.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useServer.html" target="_top"><B>FRAMES</B></A> - <A HREF="Server.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/XMLParser.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/XMLParser.html deleted file mode 100644 index 844ba3b0fe27de3ae16b53b784b7fcacc48b79ac..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/class-use/XMLParser.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useXMLParser.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLParser.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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.XMLParser -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/\class-useXMLParser.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLParser.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-frame.html deleted file mode 100644 index 67c1dfbc672abc47898c23b1cb20580f93ec6480..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-frame.html +++ /dev/null @@ -1,38 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameTitleFont"> -<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html" target="classFrame">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A></FONT> -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> -Classes</FONT> -<FONT CLASS="FrameItemFont"> -<BR> -<A HREF="Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">Mom2Listener</A> -<BR> -<A HREF="Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">Mom2OtdbConverter</A> -<BR> -<A HREF="ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">ProcessMom2Connection</A> -<BR> -<A HREF="XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener" target="classFrame">XMLParser</A></FONT></TD> -</TR> -</TABLE> - - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html deleted file mode 100644 index 74ea39d3174e799e1efff83c1ddc0bf501625041..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html +++ /dev/null @@ -1,166 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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 nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2Listener</A></B></TD> -<TD>Listen at port 4444 for mom request</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">Mom2OtdbConverter</A></B></TD> -<TD>Converts mom2 values to otdb values</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">ProcessMom2Connection</A></B></TD> -<TD>Process a mom2 connection</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener">XMLParser</A></B></TD> -<TD>parse the XML input from MoM and returns a LofarObservations.</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html deleted file mode 100644 index 95bc71a09678fd6f7f5892d434c45ae9391bdaf3..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html +++ /dev/null @@ -1,152 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.mom2listener Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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 nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -</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">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2Listener</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2OtdbConverter</B></A><LI TYPE="circle">java.lang.Thread (implements java.lang.Runnable) -<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>ProcessMom2Connection</B></A></UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>XMLParser</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-use.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-use.html deleted file mode 100644 index 8031e3b5ccf9ecf40cc6c450e2f44796eb5bf7aa..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-use.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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>nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -<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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html deleted file mode 100644 index b06119e608fb2fcfa9a331bc83a07adb72d37b74..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html +++ /dev/null @@ -1,423 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -OTDBListener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="OTDBListener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/OTDBListener.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBListener.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class OTDBListener</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Thread - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.lang.Runnable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>OTDBListener</B><DT>extends java.lang.Thread</DL> -</PRE> - -<P> -Polls if there are changes in the OTDB database. -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -</DL> -<HR> - -<P> -<!-- ======== NESTED CLASS SUMMARY ======== --> - -<A NAME="nested_class_summary"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> -<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> -<B>Nested Class Summary</B></FONT></TH> -</TR> -</TABLE> - <A NAME="nested_classes_inherited_from_class_java.lang.Thread"><!-- --></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 java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</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> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#milliseconds">milliseconds</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#queue">queue</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#repository">repository</A></B></CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="fields_inherited_from_class_java.lang.Thread"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Fields inherited from class java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#OTDBListener(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, int, nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">OTDBListener</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - int milliseconds, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</CODE> - -<BR> - Constructor</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>protected <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#convertToTask(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">convertToTask</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Converts a observation to a task using the xml generation</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#run()">run</A></B>()</CODE> - -<BR> - Starts the OTDBListener and retrieves changes with an interval</TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_java.lang.Thread"><!-- --></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.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</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>clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="milliseconds"><!-- --></A><H3> -milliseconds</H3> -<PRE> -private int <B>milliseconds</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="queue"><!-- --></A><H3> -queue</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> <B>queue</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="repository"><!-- --></A><H3> -repository</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> <B>repository</B></PRE> -<DL> -<DL> -</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="OTDBListener(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, int, nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)"><!-- --></A><H3> -OTDBListener</H3> -<PRE> -public <B>OTDBListener</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - int milliseconds, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</PRE> -<DL> -<DD>Constructor -<P> -<DL> -<DT><B>Parameters:</B><DD><CODE>queue</CODE> - Queue where this listener add the tasks<DD><CODE>milliseconds</CODE> - interval (in milliseconds) between the retrieval of the changes<DD><CODE>repository</CODE> - OTDBRepository where this listener retrieves the changes</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="run()"><!-- --></A><H3> -run</H3> -<PRE> -public void <B>run</B>()</PRE> -<DL> -<DD>Starts the OTDBListener and retrieves changes with an interval -<P> -<DD><DL> -<DT><B>Specified by:</B><DD><CODE>run</CODE> in interface <CODE>java.lang.Runnable</CODE><DT><B>Overrides:</B><DD><CODE>run</CODE> in class <CODE>java.lang.Thread</CODE></DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="convertToTask(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -convertToTask</H3> -<PRE> -protected <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> <B>convertToTask</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</PRE> -<DL> -<DD>Converts a observation to a task using the xml generation -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>lofarObservation</CODE> - -<DT><B>Returns:</B><DD>Task</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/OTDBListener.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBListener.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html deleted file mode 100644 index 8bbdc6e3fe17289eb4fb7384379fa57700f40dea..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html +++ /dev/null @@ -1,270 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -Queue.TasksFilter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Queue.TasksFilter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Queue.TasksFilter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.TasksFilter.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"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class Queue.TasksFilter</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.io.FilenameFilter</DD> -</DL> -<DL> -<DT><B>Enclosing class:</B><DD><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></DD> -</DL> -<HR> -<DL> -<DT><PRE> class <B>Queue.TasksFilter</B><DT>extends java.lang.Object<DT>implements java.io.FilenameFilter</DL> -</PRE> - -<P> -Filters task files -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html#Queue.TasksFilter()">Queue.TasksFilter</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> boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html#accept(java.io.File, java.lang.String)">accept</A></B>(java.io.File dir, - java.lang.String name)</CODE> - -<BR> - filters task files, tasks files ends on .xml</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="Queue.TasksFilter()"><!-- --></A><H3> -Queue.TasksFilter</H3> -<PRE> -<B>Queue.TasksFilter</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="accept(java.io.File, java.lang.String)"><!-- --></A><H3> -accept</H3> -<PRE> -public boolean <B>accept</B>(java.io.File dir, - java.lang.String name)</PRE> -<DL> -<DD>filters task files, tasks files ends on .xml -<P> -<DD><DL> -<DT><B>Specified by:</B><DD><CODE>accept</CODE> in interface <CODE>java.io.FilenameFilter</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/Queue.TasksFilter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.TasksFilter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html deleted file mode 100644 index b45b6151c363bb5a416114718ae1424432b792d6..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html +++ /dev/null @@ -1,630 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -Queue -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Queue"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Queue.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class Queue</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>Queue</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Queue of tasks -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -</DL> -<HR> - -<P> -<!-- ======== NESTED CLASS SUMMARY ======== --> - -<A NAME="nested_class_summary"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> -<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> -<B>Nested Class Summary</B></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>(package private) class</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue.TasksFilter</A></B></CODE> - -<BR> - Filters task files</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> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#DATE_TIME_FORMAT">DATE_TIME_FORMAT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.util.Date</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#endTime">endTime</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#FILE_DATE_TIME_FORMAT">FILE_DATE_TIME_FORMAT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#isTaskLocked">isTaskLocked</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#OTDB_TIME_FORMAT">OTDB_TIME_FORMAT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.util.Date</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#startTime">startTime</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#taskDir">taskDir</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.util.List</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#tasks">tasks</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#Queue()">Queue</A></B>()</CODE> - -<BR> - Constructor that looks for tasks (*.xml) in the .</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> void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#add(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">add</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Add the task to the task list and store it as a xml file</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#get()">get</A></B>()</CODE> - -<BR> - Retrieve a task, if there are tasks, if there are no tasks, wait until a task is in the queue</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#getFile(java.lang.String)">getFile</A></B>(java.lang.String fileName)</CODE> - -<BR> - Retrieve file by file name</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#getTimePeriod()">getTimePeriod</A></B>()</CODE> - -<BR> - Retrieves the new time period, from the last time period to now</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#moveToEndOfTaskList(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">moveToEndOfTaskList</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - If a task can not be executed, move it to the end of the tasks list, so other tasks can be executed.</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#remove(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">remove</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Remove a task</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#saveTimePeriod()">saveTimePeriod</A></B>()</CODE> - -<BR> - Save the time period</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#storeTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">storeTask</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Store a task</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> - -<!-- ============ 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="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="tasks"><!-- --></A><H3> -tasks</H3> -<PRE> -private java.util.List <B>tasks</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="taskDir"><!-- --></A><H3> -taskDir</H3> -<PRE> -private java.lang.String <B>taskDir</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="FILE_DATE_TIME_FORMAT"><!-- --></A><H3> -FILE_DATE_TIME_FORMAT</H3> -<PRE> -private static final java.lang.String <B>FILE_DATE_TIME_FORMAT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.FILE_DATE_TIME_FORMAT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="DATE_TIME_FORMAT"><!-- --></A><H3> -DATE_TIME_FORMAT</H3> -<PRE> -private static final java.lang.String <B>DATE_TIME_FORMAT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.DATE_TIME_FORMAT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="OTDB_TIME_FORMAT"><!-- --></A><H3> -OTDB_TIME_FORMAT</H3> -<PRE> -private static final java.lang.String <B>OTDB_TIME_FORMAT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.OTDB_TIME_FORMAT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="startTime"><!-- --></A><H3> -startTime</H3> -<PRE> -private java.util.Date <B>startTime</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="endTime"><!-- --></A><H3> -endTime</H3> -<PRE> -private java.util.Date <B>endTime</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="isTaskLocked"><!-- --></A><H3> -isTaskLocked</H3> -<PRE> -private boolean <B>isTaskLocked</B></PRE> -<DL> -<DL> -</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="Queue()"><!-- --></A><H3> -Queue</H3> -<PRE> -public <B>Queue</B>() - throws java.io.IOException</PRE> -<DL> -<DD>Constructor that looks for tasks (*.xml) in the ./tasks directory and load them. -<P> -<DL> - -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE></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="get()"><!-- --></A><H3> -get</H3> -<PRE> -public <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> <B>get</B>()</PRE> -<DL> -<DD>Retrieve a task, if there are tasks, if there are no tasks, wait until a task is in the queue -<P> -<DD><DL> - -<DT><B>Returns:</B><DD>Task</DL> -</DD> -</DL> -<HR> - -<A NAME="remove(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><!-- --></A><H3> -remove</H3> -<PRE> -public void <B>remove</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</PRE> -<DL> -<DD>Remove a task -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>task</CODE> - task to be removed</DL> -</DD> -</DL> -<HR> - -<A NAME="moveToEndOfTaskList(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><!-- --></A><H3> -moveToEndOfTaskList</H3> -<PRE> -public void <B>moveToEndOfTaskList</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</PRE> -<DL> -<DD>If a task can not be executed, move it to the end of the tasks list, so other tasks can be executed. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>task</CODE> - task to be moved to the end of the tasks list.</DL> -</DD> -</DL> -<HR> - -<A NAME="getTimePeriod()"><!-- --></A><H3> -getTimePeriod</H3> -<PRE> -public <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> <B>getTimePeriod</B>() - throws java.io.IOException</PRE> -<DL> -<DD>Retrieves the new time period, from the last time period to now -<P> -<DD><DL> - -<DT><B>Returns:</B><DD>Time period -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="saveTimePeriod()"><!-- --></A><H3> -saveTimePeriod</H3> -<PRE> -public void <B>saveTimePeriod</B>() - throws java.io.IOException</PRE> -<DL> -<DD>Save the time period -<P> -<DD><DL> - -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="add(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><!-- --></A><H3> -add</H3> -<PRE> -public void <B>add</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task) - throws java.io.IOException</PRE> -<DL> -<DD>Add the task to the task list and store it as a xml file -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>task</CODE> - Task to be stored -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getFile(java.lang.String)"><!-- --></A><H3> -getFile</H3> -<PRE> -protected java.lang.String <B>getFile</B>(java.lang.String fileName) - throws java.io.IOException</PRE> -<DL> -<DD>Retrieve file by file name -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>fileName</CODE> - name of the file to be read -<DT><B>Returns:</B><DD>file as string -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="storeTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><!-- --></A><H3> -storeTask</H3> -<PRE> -protected void <B>storeTask</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task) - throws java.io.FileNotFoundException, - java.io.IOException</PRE> -<DL> -<DD>Store a task -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>task</CODE> - task to be stored -<DT><B>Throws:</B> -<DD><CODE>java.io.FileNotFoundException</CODE> -<DD><CODE>java.io.IOException</CODE></DL> -</DD> -</DL> -<!-- ========= END OF CLASS DATA ========= --> -<HR> - - -<!-- ======= START OF BOTTOM NAVBAR ====== --> -<A NAME="navbar_bottom"><!-- --></A> -<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Queue.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html deleted file mode 100644 index 24c2597eb644858aaf9053f63e26bb804ee4dcda..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html +++ /dev/null @@ -1,488 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -Task -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Task"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/Task.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" target="_top"><B>FRAMES</B></A> - <A HREF="Task.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class Task</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>Task</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Task -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#fileName">fileName</A></B></CODE> - -<BR> - Name of the file that belongs to this task</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#mom2Id">mom2Id</A></B></CODE> - -<BR> - Mom2 id</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#time">time</A></B></CODE> - -<BR> - Timestamp of the status change of the lofarobservation</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#xml">xml</A></B></CODE> - -<BR> - MoM2 xml representation of a lofarobservation</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#Task()">Task</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getFileName()">getFileName</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getMom2Id()">getMom2Id</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.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> java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#getXml()">getXml</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setFileName(java.lang.String)">setFileName</A></B>(java.lang.String fileName)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setMom2Id(java.lang.String)">setMom2Id</A></B>(java.lang.String mom2Id)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setTime(java.lang.String)">setTime</A></B>(java.lang.String 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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html#setXml(java.lang.String)">setXml</A></B>(java.lang.String xml)</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> - -<!-- ============ 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="xml"><!-- --></A><H3> -xml</H3> -<PRE> -protected java.lang.String <B>xml</B></PRE> -<DL> -<DD>MoM2 xml representation of a lofarobservation -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="mom2Id"><!-- --></A><H3> -mom2Id</H3> -<PRE> -protected java.lang.String <B>mom2Id</B></PRE> -<DL> -<DD>Mom2 id -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="time"><!-- --></A><H3> -time</H3> -<PRE> -protected java.lang.String <B>time</B></PRE> -<DL> -<DD>Timestamp of the status change of the lofarobservation -<P> -<DL> -</DL> -</DL> -<HR> - -<A NAME="fileName"><!-- --></A><H3> -fileName</H3> -<PRE> -protected java.lang.String <B>fileName</B></PRE> -<DL> -<DD>Name of the file that belongs to this task -<P> -<DL> -</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="Task()"><!-- --></A><H3> -Task</H3> -<PRE> -public <B>Task</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="getXml()"><!-- --></A><H3> -getXml</H3> -<PRE> -public java.lang.String <B>getXml</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setXml(java.lang.String)"><!-- --></A><H3> -setXml</H3> -<PRE> -public void <B>setXml</B>(java.lang.String xml)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getMom2Id()"><!-- --></A><H3> -getMom2Id</H3> -<PRE> -public java.lang.String <B>getMom2Id</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setMom2Id(java.lang.String)"><!-- --></A><H3> -setMom2Id</H3> -<PRE> -public void <B>setMom2Id</B>(java.lang.String mom2Id)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getTime()"><!-- --></A><H3> -getTime</H3> -<PRE> -public java.lang.String <B>getTime</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setTime(java.lang.String)"><!-- --></A><H3> -setTime</H3> -<PRE> -public void <B>setTime</B>(java.lang.String time)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getFileName()"><!-- --></A><H3> -getFileName</H3> -<PRE> -public java.lang.String <B>getFileName</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setFileName(java.lang.String)"><!-- --></A><H3> -setFileName</H3> -<PRE> -public void <B>setFileName</B>(java.lang.String fileName)</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/Task.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" target="_top"><B>FRAMES</B></A> - <A HREF="Task.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html deleted file mode 100644 index 990bd73f3fb9468506eb7570592a7464f3352b41..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html +++ /dev/null @@ -1,595 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -TaskExecutor -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="TaskExecutor"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/TaskExecutor.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" target="_top"><B>FRAMES</B></A> - <A HREF="TaskExecutor.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class TaskExecutor</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Thread - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.lang.Runnable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>TaskExecutor</B><DT>extends java.lang.Thread</DL> -</PRE> - -<P> -Execute the tasks that are in the queue -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -</DL> -<HR> - -<P> -<!-- ======== NESTED CLASS SUMMARY ======== --> - -<A NAME="nested_class_summary"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> -<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> -<B>Nested Class Summary</B></FONT></TH> -</TR> -</TABLE> - <A NAME="nested_classes_inherited_from_class_java.lang.Thread"><!-- --></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 java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</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> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private nl.astron.util.http.AstronHttpClient</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#httpClient">httpClient</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private org.apache.commons.logging.Log</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#log">log</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#momUrl">momUrl</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#password">password</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#queue">queue</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private static int</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#SLEEP_MILLISECONDS">SLEEP_MILLISECONDS</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#username">username</A></B></CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="fields_inherited_from_class_java.lang.Thread"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Fields inherited from class java.lang.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#TaskExecutor(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">TaskExecutor</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - java.lang.String username, - java.lang.String password, - java.lang.String authUrl, - java.lang.String momUrl)</CODE> - -<BR> - Constructor</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>protected org.w3c.dom.Document</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#convertStringToDocument(java.lang.String)">convertStringToDocument</A></B>(java.lang.String myXML)</CODE> - -<BR> - Converts a xml to a document</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#equal(org.w3c.dom.Node, java.lang.String)">equal</A></B>(org.w3c.dom.Node node, - java.lang.String nodeName)</CODE> - -<BR> - The equal method compares if an node has the given name</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#getValue(org.w3c.dom.Node)">getValue</A></B>(org.w3c.dom.Node node)</CODE> - -<BR> - The getValue method returns the value of an node</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#isSucceed(java.lang.String)">isSucceed</A></B>(java.lang.String string)</CODE> - -<BR> - Analyzed the mom2 output and return if the task is done</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#processTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">processTask</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Process task.</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#run()">run</A></B>()</CODE> - -<BR> - start the taskExecutor thread</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#sleep()">sleep</A></B>()</CODE> - -<BR> - If some error occured, the task executor going to sleep for a while</TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_java.lang.Thread"><!-- --></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.Thread</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</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>clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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="SLEEP_MILLISECONDS"><!-- --></A><H3> -SLEEP_MILLISECONDS</H3> -<PRE> -private static final int <B>SLEEP_MILLISECONDS</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor.SLEEP_MILLISECONDS">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="log"><!-- --></A><H3> -log</H3> -<PRE> -private org.apache.commons.logging.Log <B>log</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="httpClient"><!-- --></A><H3> -httpClient</H3> -<PRE> -private nl.astron.util.http.AstronHttpClient <B>httpClient</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="queue"><!-- --></A><H3> -queue</H3> -<PRE> -private <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> <B>queue</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="username"><!-- --></A><H3> -username</H3> -<PRE> -private java.lang.String <B>username</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="password"><!-- --></A><H3> -password</H3> -<PRE> -private java.lang.String <B>password</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="momUrl"><!-- --></A><H3> -momUrl</H3> -<PRE> -private java.lang.String <B>momUrl</B></PRE> -<DL> -<DL> -</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="TaskExecutor(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3> -TaskExecutor</H3> -<PRE> -public <B>TaskExecutor</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - java.lang.String username, - java.lang.String password, - java.lang.String authUrl, - java.lang.String momUrl)</PRE> -<DL> -<DD>Constructor -<P> -<DL> -<DT><B>Parameters:</B><DD><CODE>queue</CODE> - Queue to retrieve tasks<DD><CODE>username</CODE> - username of mom2<DD><CODE>password</CODE> - password of mom2<DD><CODE>authUrl</CODE> - authorization module url<DD><CODE>momUrl</CODE> - mom2 module url</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="run()"><!-- --></A><H3> -run</H3> -<PRE> -public void <B>run</B>()</PRE> -<DL> -<DD>start the taskExecutor thread -<P> -<DD><DL> -<DT><B>Specified by:</B><DD><CODE>run</CODE> in interface <CODE>java.lang.Runnable</CODE><DT><B>Overrides:</B><DD><CODE>run</CODE> in class <CODE>java.lang.Thread</CODE></DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="processTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)"><!-- --></A><H3> -processTask</H3> -<PRE> -protected boolean <B>processTask</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</PRE> -<DL> -<DD>Process task. It logs in to MoM2, it post the task xml to MoM2 and logouts. -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>task</CODE> - tass to process -<DT><B>Returns:</B><DD>If MoM2 result is ok, it returns true</DL> -</DD> -</DL> -<HR> - -<A NAME="sleep()"><!-- --></A><H3> -sleep</H3> -<PRE> -protected void <B>sleep</B>()</PRE> -<DL> -<DD>If some error occured, the task executor going to sleep for a while -<P> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="isSucceed(java.lang.String)"><!-- --></A><H3> -isSucceed</H3> -<PRE> -protected boolean <B>isSucceed</B>(java.lang.String string)</PRE> -<DL> -<DD>Analyzed the mom2 output and return if the task is done -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>string</CODE> - -<DT><B>Returns:</B><DD>true, if task is successfull executed</DL> -</DD> -</DL> -<HR> - -<A NAME="convertStringToDocument(java.lang.String)"><!-- --></A><H3> -convertStringToDocument</H3> -<PRE> -protected org.w3c.dom.Document <B>convertStringToDocument</B>(java.lang.String myXML) - throws java.lang.Exception</PRE> -<DL> -<DD>Converts a xml to a document -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>myXML</CODE> - -<DT><B>Returns:</B><DD>Document -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="equal(org.w3c.dom.Node, java.lang.String)"><!-- --></A><H3> -equal</H3> -<PRE> -protected boolean <B>equal</B>(org.w3c.dom.Node node, - java.lang.String nodeName)</PRE> -<DL> -<DD>The equal method compares if an node has the given name -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - <DD><CODE>nodeName</CODE> - -<DT><B>Returns:</B><DD>true, if equal</DL> -</DD> -</DL> -<HR> - -<A NAME="getValue(org.w3c.dom.Node)"><!-- --></A><H3> -getValue</H3> -<PRE> -protected java.lang.String <B>getValue</B>(org.w3c.dom.Node node)</PRE> -<DL> -<DD>The getValue method returns the value of an node -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>node</CODE> - -<DT><B>Returns:</B><DD>value of the node</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/TaskExecutor.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" target="_top"><B>FRAMES</B></A> - <A HREF="TaskExecutor.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_java.lang.Thread">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html deleted file mode 100644 index 4c6710bebcd917e770c3cc7c21a90ea91a288425..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html +++ /dev/null @@ -1,383 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -TimePeriod -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="TimePeriod"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/TimePeriod.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" target="_top"><B>FRAMES</B></A> - <A HREF="TimePeriod.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class TimePeriod</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>TimePeriod</B><DT>extends java.lang.Object<DT>implements java.io.Serializable</DL> -</PRE> - -<P> -Time period -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</DD> -<DT><B>See Also:</B><DD><A HREF="../../../../../../serialized-form.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod">Serialized Form</A></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>protected java.util.Date</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#endTime">endTime</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.util.Date</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#startTime">startTime</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#TimePeriod()">TimePeriod</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.util.Date</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#getEndTime()">getEndTime</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#getStartTime()">getStartTime</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#setEndTime(java.util.Date)">setEndTime</A></B>(java.util.Date endTime)</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html#setStartTime(java.util.Date)">setStartTime</A></B>(java.util.Date startTime)</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> - -<!-- ============ 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="startTime"><!-- --></A><H3> -startTime</H3> -<PRE> -protected java.util.Date <B>startTime</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> - -<A NAME="endTime"><!-- --></A><H3> -endTime</H3> -<PRE> -protected java.util.Date <B>endTime</B></PRE> -<DL> -<DL> -</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="TimePeriod()"><!-- --></A><H3> -TimePeriod</H3> -<PRE> -public <B>TimePeriod</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="getEndTime()"><!-- --></A><H3> -getEndTime</H3> -<PRE> -public java.util.Date <B>getEndTime</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setEndTime(java.util.Date)"><!-- --></A><H3> -setEndTime</H3> -<PRE> -public void <B>setEndTime</B>(java.util.Date endTime)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getStartTime()"><!-- --></A><H3> -getStartTime</H3> -<PRE> -public java.util.Date <B>getStartTime</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="setStartTime(java.util.Date)"><!-- --></A><H3> -setStartTime</H3> -<PRE> -public void <B>setStartTime</B>(java.util.Date startTime)</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/TimePeriod.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" target="_top"><B>FRAMES</B></A> - <A HREF="TimePeriod.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html deleted file mode 100644 index b2b096dc7c42979c0f1eee23f13deaefd0667843..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html +++ /dev/null @@ -1,563 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -XMLGenerator -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="XMLGenerator"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/XMLGenerator.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLGenerator.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_top"></A> -<!-- ========= END OF TOP NAVBAR ========= --> - -<HR> -<!-- ======== START OF CLASS DATA ======== --> -<H2> -<FONT SIZE="-1"> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</FONT> -<BR> -Class XMLGenerator</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>XMLGenerator</B><DT>extends java.lang.Object</DL> -</PRE> - -<P> -Generates MoM2-xml -<P> - -<P> -<DL> -<DT><B>Author:</B></DT> - <DD>Bastiaan Verhoef</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>protected static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FAILED">FAILED</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#FINISHED">FINISHED</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_LOFAR_NAMESPACE">MOM2_LOFAR_NAMESPACE</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#MOM2_NAMESPACE">MOM2_NAMESPACE</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected static java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#OTDB_DATETIME_FORMAT">OTDB_DATETIME_FORMAT</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private nl.astron.wsrt.util.XMLBuilder</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#xmlBuilder">xmlBuilder</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#XMLGenerator()">XMLGenerator</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>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addChildren(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">addChildren</A></B>(org.w3c.dom.Element parent, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addMeasurement(org.w3c.dom.Element, java.lang.String, java.lang.String, java.util.Date, java.util.Date)">addMeasurement</A></B>(org.w3c.dom.Element childrenElement, - java.lang.String mom2Id, - java.lang.String status, - java.util.Date startTime, - java.util.Date endTime)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addObservation(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">addObservation</A></B>(org.w3c.dom.Element observationElement, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#addXmlStatusElement(org.w3c.dom.Element, java.lang.String)">addXmlStatusElement</A></B>(org.w3c.dom.Element parent, - java.lang.String status)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#convertToMomStatus(java.lang.String)">convertToMomStatus</A></B>(java.lang.String code)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String[]</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getArray(java.lang.String)">getArray</A></B>(java.lang.String string)</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected org.w3c.dom.Document</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationDocument(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">getObservationDocument</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - Generates XML Document from lofarObservation</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getObservationXml(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">getObservationXml</A></B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</CODE> - -<BR> - Generates XML String from LofarObservaiton</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected java.lang.String</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html#getStatusStringFromCode(java.lang.String)">getStatusStringFromCode</A></B>(java.lang.String code)</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> - -<!-- ============ 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="MOM2_LOFAR_NAMESPACE"><!-- --></A><H3> -MOM2_LOFAR_NAMESPACE</H3> -<PRE> -protected static final java.lang.String <B>MOM2_LOFAR_NAMESPACE</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.MOM2_LOFAR_NAMESPACE">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="MOM2_NAMESPACE"><!-- --></A><H3> -MOM2_NAMESPACE</H3> -<PRE> -protected static final java.lang.String <B>MOM2_NAMESPACE</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.MOM2_NAMESPACE">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="OTDB_DATETIME_FORMAT"><!-- --></A><H3> -OTDB_DATETIME_FORMAT</H3> -<PRE> -protected static final java.lang.String <B>OTDB_DATETIME_FORMAT</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.OTDB_DATETIME_FORMAT">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="FAILED"><!-- --></A><H3> -FAILED</H3> -<PRE> -protected static final java.lang.String <B>FAILED</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.FAILED">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="FINISHED"><!-- --></A><H3> -FINISHED</H3> -<PRE> -protected static final java.lang.String <B>FINISHED</B></PRE> -<DL> -<DL> -<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator.FINISHED">Constant Field Values</A></DL> -</DL> -<HR> - -<A NAME="xmlBuilder"><!-- --></A><H3> -xmlBuilder</H3> -<PRE> -private nl.astron.wsrt.util.XMLBuilder <B>xmlBuilder</B></PRE> -<DL> -<DL> -</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="XMLGenerator()"><!-- --></A><H3> -XMLGenerator</H3> -<PRE> -public <B>XMLGenerator</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="getObservationDocument(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -getObservationDocument</H3> -<PRE> -protected org.w3c.dom.Document <B>getObservationDocument</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation) - throws javax.xml.parsers.ParserConfigurationException</PRE> -<DL> -<DD>Generates XML Document from lofarObservation -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>observation</CODE> - LofarObservation -<DT><B>Returns:</B><DD>MoM2 XML Document -<DT><B>Throws:</B> -<DD><CODE>javax.xml.parsers.ParserConfigurationException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="getObservationXml(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -getObservationXml</H3> -<PRE> -public java.lang.String <B>getObservationXml</B>(<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation) - throws java.io.IOException, - javax.xml.parsers.ParserConfigurationException</PRE> -<DL> -<DD>Generates XML String from LofarObservaiton -<P> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>observation</CODE> - -<DT><B>Returns:</B><DD>MoM2 XML String -<DT><B>Throws:</B> -<DD><CODE>java.io.IOException</CODE> -<DD><CODE>javax.xml.parsers.ParserConfigurationException</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="addObservation(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -addObservation</H3> -<PRE> -protected void <B>addObservation</B>(org.w3c.dom.Element observationElement, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="addChildren(org.w3c.dom.Element, nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)"><!-- --></A><H3> -addChildren</H3> -<PRE> -protected void <B>addChildren</B>(org.w3c.dom.Element parent, - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> observation)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="addMeasurement(org.w3c.dom.Element, java.lang.String, java.lang.String, java.util.Date, java.util.Date)"><!-- --></A><H3> -addMeasurement</H3> -<PRE> -protected void <B>addMeasurement</B>(org.w3c.dom.Element childrenElement, - java.lang.String mom2Id, - java.lang.String status, - java.util.Date startTime, - java.util.Date endTime)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="addXmlStatusElement(org.w3c.dom.Element, java.lang.String)"><!-- --></A><H3> -addXmlStatusElement</H3> -<PRE> -protected void <B>addXmlStatusElement</B>(org.w3c.dom.Element parent, - java.lang.String status)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getStatusStringFromCode(java.lang.String)"><!-- --></A><H3> -getStatusStringFromCode</H3> -<PRE> -protected java.lang.String <B>getStatusStringFromCode</B>(java.lang.String code)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="convertToMomStatus(java.lang.String)"><!-- --></A><H3> -convertToMomStatus</H3> -<PRE> -protected java.lang.String <B>convertToMomStatus</B>(java.lang.String code)</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="getArray(java.lang.String)"><!-- --></A><H3> -getArray</H3> -<PRE> -protected java.lang.String[] <B>getArray</B>(java.lang.String string)</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/XMLGenerator.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLGenerator.html" target="_top"><B>NO FRAMES</B></A> - <SCRIPT type="text/javascript"> - <!-- - if(window==top) { - document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); - } - //--> -</SCRIPT> -<NOSCRIPT> - <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> -</NOSCRIPT> - - -</FONT></TD> -</TR> -<TR> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> - SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> -<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> -DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> -</TR> -</TABLE> -<A NAME="skip-navbar_bottom"></A> -<!-- ======== END OF BOTTOM NAVBAR ======= --> - -<HR> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/OTDBListener.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/OTDBListener.html deleted file mode 100644 index 713e89355ebf6788b15ea378e350b619c4cd6c91..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/OTDBListener.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useOTDBListener.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBListener.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useOTDBListener.html" target="_top"><B>FRAMES</B></A> - <A HREF="OTDBListener.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.TasksFilter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.TasksFilter.html deleted file mode 100644 index ebe64efdde164d754c65570ce98f5ddbb0edc64a..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.TasksFilter.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useQueue.TasksFilter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.TasksFilter.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue.TasksFilter -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useQueue.TasksFilter.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.TasksFilter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.html deleted file mode 100644 index faa388810eef3a71deb101ee442f6d4b8fa0a15c..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.html +++ /dev/null @@ -1,210 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useQueue.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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">Fields in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> declared as <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></CODE></FONT></TD> -<TD><CODE><B>TaskExecutor.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#queue">queue</A></B></CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>private <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></CODE></FONT></TD> -<TD><CODE><B>OTDBListener.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#queue">queue</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">Constructors in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#OTDBListener(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, int, nl.astron.lofar.odtb.mom2otdbadapter.data.OTDBRepository)">OTDBListener</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - int milliseconds, - <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">OTDBRepository</A> repository)</CODE> - -<BR> - Constructor</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#TaskExecutor(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">TaskExecutor</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A> queue, - java.lang.String username, - java.lang.String password, - java.lang.String authUrl, - java.lang.String momUrl)</CODE> - -<BR> - Constructor</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useQueue.html" target="_top"><B>FRAMES</B></A> - <A HREF="Queue.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Task.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Task.html deleted file mode 100644 index 8ed99694ed6873f48b660c4e93aeb0358d0d3ee9..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Task.html +++ /dev/null @@ -1,232 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTask.html" target="_top"><B>FRAMES</B></A> - <A HREF="Task.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> that return <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></CODE></FONT></TD> -<TD><CODE><B>OTDBListener.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html#convertToTask(nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation)">convertToTask</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">LofarObservation</A> lofarObservation)</CODE> - -<BR> - Converts a observation to a task using the xml generation</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></CODE></FONT></TD> -<TD><CODE><B>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#get()">get</A></B>()</CODE> - -<BR> - Retrieve a task, if there are tasks, if there are no tasks, wait until a task is in the queue</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> with parameters of type <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</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>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#add(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">add</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Add the task to the task list and store it as a xml file</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>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#moveToEndOfTaskList(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">moveToEndOfTaskList</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - If a task can not be executed, move it to the end of the tasks list, so other tasks can be executed.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected boolean</CODE></FONT></TD> -<TD><CODE><B>TaskExecutor.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html#processTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">processTask</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Process task.</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>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#remove(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">remove</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Remove a task</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#storeTask(nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Task)">storeTask</A></B>(<A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A> task)</CODE> - -<BR> - Store a task</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTask.html" target="_top"><B>FRAMES</B></A> - <A HREF="Task.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TaskExecutor.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TaskExecutor.html deleted file mode 100644 index fd45762b4fac26d843dc8d41efd501237789d08d..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TaskExecutor.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTaskExecutor.html" target="_top"><B>FRAMES</B></A> - <A HREF="TaskExecutor.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTaskExecutor.html" target="_top"><B>FRAMES</B></A> - <A HREF="TaskExecutor.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TimePeriod.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TimePeriod.html deleted file mode 100644 index f42a0084ac8cd605a87499c3290dcfe5094212d2..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TimePeriod.html +++ /dev/null @@ -1,176 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTimePeriod.html" target="_top"><B>FRAMES</B></A> - <A HREF="TimePeriod.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A> in <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> that return <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE> <A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A></CODE></FONT></TD> -<TD><CODE><B>Queue.</B><B><A HREF="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html#getTimePeriod()">getTimePeriod</A></B>()</CODE> - -<BR> - Retrieves the new time period, from the last time period to now</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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useTimePeriod.html" target="_top"><B>FRAMES</B></A> - <A HREF="TimePeriod.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/XMLGenerator.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/XMLGenerator.html deleted file mode 100644 index 354315c94bfd0dfc14c11df1fa53155f2cdbb487..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/XMLGenerator.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useXMLGenerator.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLGenerator.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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.XMLGenerator -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/\class-useXMLGenerator.html" target="_top"><B>FRAMES</B></A> - <A HREF="XMLGenerator.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-frame.html deleted file mode 100644 index 209096409db3b25fc44eb4602cd2bfa6d774681e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-frame.html +++ /dev/null @@ -1,42 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameTitleFont"> -<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html" target="classFrame">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></FONT> -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> -Classes</FONT> -<FONT CLASS="FrameItemFont"> -<BR> -<A HREF="OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">OTDBListener</A> -<BR> -<A HREF="Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">Queue</A> -<BR> -<A HREF="Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">Task</A> -<BR> -<A HREF="TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">TaskExecutor</A> -<BR> -<A HREF="TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">TimePeriod</A> -<BR> -<A HREF="XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener" target="classFrame">XMLGenerator</A></FONT></TD> -</TR> -</TABLE> - - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html deleted file mode 100644 index d4ec8a1dfc7e58da8d8d366d9bf25fdd5b72d062..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html +++ /dev/null @@ -1,174 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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 nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">OTDBListener</A></B></TD> -<TD>Polls if there are changes in the OTDB database.</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Queue</A></B></TD> -<TD>Queue of tasks</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">Task</A></B></TD> -<TD>Task</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TaskExecutor</A></B></TD> -<TD>Execute the tasks that are in the queue</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">TimePeriod</A></B></TD> -<TD>Time period</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">XMLGenerator</A></B></TD> -<TD>Generates MoM2-xml</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html"><B>PREV PACKAGE</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html deleted file mode 100644 index d2738eff48d3a02549356f8644e30224cff816dc..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html +++ /dev/null @@ -1,154 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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 nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -</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">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue.TasksFilter</B></A> (implements java.io.FilenameFilter) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Task</B></A><LI TYPE="circle">java.lang.Thread (implements java.lang.Runnable) -<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>OTDBListener</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TaskExecutor</B></A></UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TimePeriod</B></A> (implements java.io.Serializable) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>XMLGenerator</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html"><B>PREV</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-use.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-use.html deleted file mode 100644 index e21ebe4d4dea667bdc2fc9ab3efe1f17ffbf6950..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-use.html +++ /dev/null @@ -1,178 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><A HREF="#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></A></TD> -<TD> </TD> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><!-- --></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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A> used by <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></FONT></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Queue.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue</B></A></B> - -<BR> - Queue of tasks</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/Task.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Task</B></A></B> - -<BR> - Task</TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/class-use/TimePeriod.html#nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TimePeriod</B></A></B> - -<BR> - Time period</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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-frame.html deleted file mode 100644 index 3077062a1d0a38f876e129f0a7483dc8617e97dd..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameTitleFont"> -<A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html" target="classFrame">nl.astron.lofar.odtb.mom2otdbadapter</A></FONT> -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> -Classes</FONT> -<FONT CLASS="FrameItemFont"> -<BR> -<A HREF="MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter" target="classFrame">MomOtdbAdapter</A></FONT></TD> -</TR> -</TABLE> - - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html deleted file mode 100644 index 8495b0819302d84864d5059413fd866b10e35d33..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html +++ /dev/null @@ -1,154 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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 nl.astron.lofar.odtb.mom2otdbadapter -</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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter">MomOtdbAdapter</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-files/index-1.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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html deleted file mode 100644 index 6cf3f45a2479e4c4f69580026fd639c673d6840c..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html +++ /dev/null @@ -1,149 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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 nl.astron.lofar.odtb.mom2otdbadapter -</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">nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter"><B>MomOtdbAdapter</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-files/index-1.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="../../../../../nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html"><B>NEXT</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-use.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-use.html deleted file mode 100644 index be4fdfedc9eca8a75452d336264d66fc7caab837..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/package-use.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Package nl.astron.lofar.odtb.mom2otdbadapter -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Package nl.astron.lofar.odtb.mom2otdbadapter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/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>nl.astron.lofar.odtb.mom2otdbadapter</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter -<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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html deleted file mode 100644 index a1231377080ff05c479db0fe9c7e448b33f49295..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html +++ /dev/null @@ -1,249 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:30 CET 2006 --> -<TITLE> -AllTests -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="AllTests"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/AllTests.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" target="_top"><B>FRAMES</B></A> - <A HREF="AllTests.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"> -nl.astron.lofar.odtb.mom2otdbadapter.test</FONT> -<BR> -Class AllTests</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>AllTests</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html#AllTests()">AllTests</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>static junit.framework.Test</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html#suite()">suite</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="AllTests()"><!-- --></A><H3> -AllTests</H3> -<PRE> -public <B>AllTests</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="suite()"><!-- --></A><H3> -suite</H3> -<PRE> -public static junit.framework.Test <B>suite</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/AllTests.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" target="_top"><B>FRAMES</B></A> - <A HREF="AllTests.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html deleted file mode 100644 index 0d595da350ca0dc7058aeb368fc99e2544ba9b7d..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html +++ /dev/null @@ -1,268 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:30 CET 2006 --> -<TITLE> -TestClient -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="TestClient"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/TestClient.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestClient.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"> -nl.astron.lofar.odtb.mom2otdbadapter.test</FONT> -<BR> -Class TestClient</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient</B> -</PRE> -<HR> -<DL> -<DT><PRE>public class <B>TestClient</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#TestClient()">TestClient</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> void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#listenSocket()">listenSocket</A></B>()</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>static void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html#main(java.lang.String[])">main</A></B>(java.lang.String[] args)</CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<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="TestClient()"><!-- --></A><H3> -TestClient</H3> -<PRE> -public <B>TestClient</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="listenSocket()"><!-- --></A><H3> -listenSocket</H3> -<PRE> -public void <B>listenSocket</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="main(java.lang.String[])"><!-- --></A><H3> -main</H3> -<PRE> -public static void <B>main</B>(java.lang.String[] args)</PRE> -<DL> -<DD><DL> -<DT><B>Parameters:</B><DD><CODE>args</CODE> - </DL> -</DD> -</DL> -<!-- ========= END OF CLASS DATA ========= --> -<HR> - - -<!-- ======= START OF BOTTOM NAVBAR ====== --> -<A NAME="navbar_bottom"><!-- --></A> -<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/TestClient.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>PREV CLASS</B></A> - <A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>NEXT CLASS</B></A></FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestClient.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html deleted file mode 100644 index edda835b8bc28d41d81e5ac477e4eda87cd79a11..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html +++ /dev/null @@ -1,436 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:31 CET 2006 --> -<TITLE> -TestMom2OtdbConverter -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter class"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="TestMom2OtdbConverter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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/TestMom2OtdbConverter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestMom2OtdbConverter.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"> -nl.astron.lofar.odtb.mom2otdbadapter.test</FONT> -<BR> -Class TestMom2OtdbConverter</H2> -<PRE> -java.lang.Object - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">junit.framework.Assert - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">junit.framework.TestCase - <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter</B> -</PRE> -<DL> -<DT><B>All Implemented Interfaces:</B> <DD>junit.framework.Test</DD> -</DL> -<HR> -<DL> -<DT><PRE>public class <B>TestMom2OtdbConverter</B><DT>extends junit.framework.TestCase</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#TestMom2OtdbConverter(java.lang.String)">TestMom2OtdbConverter</A></B>(java.lang.String name)</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>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#setUp()">setUp</A></B>()</CODE> - -<BR> - </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> -<CODE>protected void</CODE></FONT></TD> -<TD><CODE><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#tearDown()">tearDown</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBBandSelection()">testGetOTDBBandSelection</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBContiguousSubbands()">testGetOTDBContiguousSubbands</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBFrequency()">testGetOTDBFrequency</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBMaxSubbands()">testGetOTDBMaxSubbands</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBSamplingFrequency()">testGetOTDBSamplingFrequency</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBScatteredSubbands()">testGetOTDBScatteredSubbands</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html#testGetOTDBStatus()">testGetOTDBStatus</A></B>()</CODE> - -<BR> - </TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_junit.framework.TestCase"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Methods inherited from class junit.framework.TestCase</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>countTestCases, createResult, getName, run, run, runBare, runTest, setName, toString</CODE></TD> -</TR> -</TABLE> - <A NAME="methods_inherited_from_class_junit.framework.Assert"><!-- --></A> -<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> -<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> -<TH ALIGN="left"><B>Methods inherited from class junit.framework.Assert</B></TH> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail</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>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="TestMom2OtdbConverter(java.lang.String)"><!-- --></A><H3> -TestMom2OtdbConverter</H3> -<PRE> -public <B>TestMom2OtdbConverter</B>(java.lang.String name)</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="setUp()"><!-- --></A><H3> -setUp</H3> -<PRE> -protected void <B>setUp</B>() - throws java.lang.Exception</PRE> -<DL> -<DD><DL> -<DT><B>Overrides:</B><DD><CODE>setUp</CODE> in class <CODE>junit.framework.TestCase</CODE></DL> -</DD> -<DD><DL> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="tearDown()"><!-- --></A><H3> -tearDown</H3> -<PRE> -protected void <B>tearDown</B>() - throws java.lang.Exception</PRE> -<DL> -<DD><DL> -<DT><B>Overrides:</B><DD><CODE>tearDown</CODE> in class <CODE>junit.framework.TestCase</CODE></DL> -</DD> -<DD><DL> - -<DT><B>Throws:</B> -<DD><CODE>java.lang.Exception</CODE></DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBContiguousSubbands()"><!-- --></A><H3> -testGetOTDBContiguousSubbands</H3> -<PRE> -public void <B>testGetOTDBContiguousSubbands</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBScatteredSubbands()"><!-- --></A><H3> -testGetOTDBScatteredSubbands</H3> -<PRE> -public void <B>testGetOTDBScatteredSubbands</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBMaxSubbands()"><!-- --></A><H3> -testGetOTDBMaxSubbands</H3> -<PRE> -public void <B>testGetOTDBMaxSubbands</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBBandSelection()"><!-- --></A><H3> -testGetOTDBBandSelection</H3> -<PRE> -public void <B>testGetOTDBBandSelection</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBSamplingFrequency()"><!-- --></A><H3> -testGetOTDBSamplingFrequency</H3> -<PRE> -public void <B>testGetOTDBSamplingFrequency</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBFrequency()"><!-- --></A><H3> -testGetOTDBFrequency</H3> -<PRE> -public void <B>testGetOTDBFrequency</B>()</PRE> -<DL> -<DD><DL> -</DL> -</DD> -</DL> -<HR> - -<A NAME="testGetOTDBStatus()"><!-- --></A><H3> -testGetOTDBStatus</H3> -<PRE> -public void <B>testGetOTDBStatus</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/TestMom2OtdbConverter.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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>PREV CLASS</B></A> - NEXT CLASS</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestMom2OtdbConverter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/AllTests.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/AllTests.html deleted file mode 100644 index 03ba53190d28d8214d8e6fdf8b5fbe15ed939687..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/AllTests.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useAllTests.html" target="_top"><B>FRAMES</B></A> - <A HREF="AllTests.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>nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.test.AllTests -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useAllTests.html" target="_top"><B>FRAMES</B></A> - <A HREF="AllTests.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestClient.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestClient.html deleted file mode 100644 index 919c7a72309c5af318a49c0e8820be053a0c0cc9..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestClient.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useTestClient.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestClient.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>nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.test.TestClient -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useTestClient.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestClient.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestMom2OtdbConverter.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestMom2OtdbConverter.html deleted file mode 100644 index 5fe3ea8ad729455e8912dd270cdfe2b308bb6457..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/class-use/TestMom2OtdbConverter.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Class nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useTestMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestMom2OtdbConverter.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>nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.test.TestMom2OtdbConverter -<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="../../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/\class-useTestMom2OtdbConverter.html" target="_top"><B>FRAMES</B></A> - <A HREF="TestMom2OtdbConverter.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-frame.html deleted file mode 100644 index 06cebc47c7575cc11c8bb8d189235b6be254f129..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-frame.html +++ /dev/null @@ -1,36 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.test -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.test package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - - -</HEAD> - -<BODY BGCOLOR="white"> -<FONT size="+1" CLASS="FrameTitleFont"> -<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html" target="classFrame">nl.astron.lofar.odtb.mom2otdbadapter.test</A></FONT> -<TABLE BORDER="0" WIDTH="100%" SUMMARY=""> -<TR> -<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> -Classes</FONT> -<FONT CLASS="FrameItemFont"> -<BR> -<A HREF="AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">AllTests</A> -<BR> -<A HREF="TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">TestClient</A> -<BR> -<A HREF="TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test" target="classFrame">TestMom2OtdbConverter</A></FONT></TD> -</TR> -</TABLE> - - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html deleted file mode 100644 index f3837dade0d618f6cf5c9aa9c13a1be6191269d3..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html +++ /dev/null @@ -1,162 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.test -</TITLE> - -<META NAME="keywords" CONTENT="nl.astron.lofar.odtb.mom2otdbadapter.test package"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.test"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html"><B>PREV PACKAGE</B></A> - NEXT PACKAGE</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/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 nl.astron.lofar.odtb.mom2otdbadapter.test -</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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">AllTests</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestClient</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="15%"><B><A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test">TestMom2OtdbConverter</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html"><B>PREV PACKAGE</B></A> - NEXT PACKAGE</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html deleted file mode 100644 index c5046dbed9d700f9a677b4b82c79b0d3690c162e..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html +++ /dev/null @@ -1,154 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -nl.astron.lofar.odtb.mom2otdbadapter.test Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="nl.astron.lofar.odtb.mom2otdbadapter.test Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html"><B>PREV</B></A> - NEXT</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/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 nl.astron.lofar.odtb.mom2otdbadapter.test -</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">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>AllTests</B></A><LI TYPE="circle">junit.framework.Assert<UL> -<LI TYPE="circle">junit.framework.TestCase (implements junit.framework.Test) -<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestMom2OtdbConverter</B></A></UL> -</UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestClient</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-files/index-1.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="../../../../../../nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html"><B>PREV</B></A> - NEXT</FONT></TD> -<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> - <A HREF="../../../../../../index.html?nl/astron/lofar/odtb/mom2otdbadapter/test/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-use.html b/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-use.html deleted file mode 100644 index f5862a8708779041f0d5a7cff90c05322a5affb9..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/nl/astron/lofar/odtb/mom2otdbadapter/test/package-use.html +++ /dev/null @@ -1,140 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.test -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Uses of Package nl.astron.lofar.odtb.mom2otdbadapter.test"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/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>nl.astron.lofar.odtb.mom2otdbadapter.test</B></H2> -</CENTER> -No usage of nl.astron.lofar.odtb.mom2otdbadapter.test -<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-files/index-1.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?nl/astron/lofar/odtb/mom2otdbadapter/test/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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/overview-frame.html b/SAS/OTB/MoM-OTDB-adapter/doc/overview-frame.html deleted file mode 100644 index 732b203eec55b99f60231b654f751f2eb74dceb1..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/overview-frame.html +++ /dev/null @@ -1,50 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Overview -</TITLE> - -<META NAME="keywords" CONTENT="Overview, MoM-OTDB-adapter"> - -<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="nl/astron/lofar/odtb/mom2otdbadapter/package-frame.html" target="packageFrame">nl.astron.lofar.odtb.mom2otdbadapter</A></FONT> -<BR> -<FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/package-frame.html" target="packageFrame">nl.astron.lofar.odtb.mom2otdbadapter.data</A></FONT> -<BR> -<FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-frame.html" target="packageFrame">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A></FONT> -<BR> -<FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-frame.html" target="packageFrame">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></FONT> -<BR> -<FONT CLASS="FrameItemFont"><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/package-frame.html" target="packageFrame">nl.astron.lofar.odtb.mom2otdbadapter.test</A></FONT> -<BR> -</TD> -</TR> -</TABLE> - -<P> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/overview-summary.html b/SAS/OTB/MoM-OTDB-adapter/doc/overview-summary.html deleted file mode 100644 index 80e2da86ec6f25d50f9e5bde150e8f92603804b1..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/overview-summary.html +++ /dev/null @@ -1,169 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:33 CET 2006 --> -<TITLE> -Overview -</TITLE> - -<META NAME="keywords" CONTENT="Overview, MoM-OTDB-adapter"> - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Overview"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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> -MoM-OTDB-adapter -</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="nl/astron/lofar/odtb/mom2otdbadapter/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="20%"><B><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="20%"><B><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="20%"><B><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A></B></TD> -<TD> </TD> -</TR> -<TR BGCOLOR="white" CLASS="TableRowColor"> -<TD WIDTH="20%"><B><A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/package-summary.html">nl.astron.lofar.odtb.mom2otdbadapter.test</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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/overview-tree.html b/SAS/OTB/MoM-OTDB-adapter/doc/overview-tree.html deleted file mode 100644 index b8324e59e4903085445e0daed84bbfea32d6c094..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/overview-tree.html +++ /dev/null @@ -1,159 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Class Hierarchy -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Class Hierarchy"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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="nl/astron/lofar/odtb/mom2otdbadapter/package-tree.html">nl.astron.lofar.odtb.mom2otdbadapter</A>, <A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/package-tree.html">nl.astron.lofar.odtb.mom2otdbadapter.data</A>, <A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/package-tree.html">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener</A>, <A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/package-tree.html">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</A>, <A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/package-tree.html">nl.astron.lofar.odtb.mom2otdbadapter.test</A></DL> -<HR> -<H2> -Class Hierarchy -</H2> -<UL> -<LI TYPE="circle">java.lang.Object<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/AllTests.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>AllTests</B></A><LI TYPE="circle">junit.framework.Assert<UL> -<LI TYPE="circle">junit.framework.TestCase (implements junit.framework.Test) -<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestMom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestMom2OtdbConverter</B></A></UL> -</UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>LofarObservation</B></A> (implements java.io.Serializable) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2Listener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2Listener</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2OtdbConverter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>Mom2OtdbConverter</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter"><B>MomOtdbAdapter</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.data.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data"><B>OTDBRepository</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.TasksFilter.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Queue.TasksFilter</B></A> (implements java.io.FilenameFilter) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Task.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>Task</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.test.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/test/TestClient.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.test"><B>TestClient</B></A><LI TYPE="circle">java.lang.Thread (implements java.lang.Runnable) -<UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>OTDBListener</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/ProcessMom2Connection.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>ProcessMom2Connection</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TaskExecutor</B></A></UL> -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>TimePeriod</B></A> (implements java.io.Serializable) -<LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/XMLGenerator.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener"><B>XMLGenerator</B></A><LI TYPE="circle">nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.<A HREF="nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.mom2listener"><B>XMLParser</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"> <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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/package-list b/SAS/OTB/MoM-OTDB-adapter/doc/package-list deleted file mode 100644 index 82b4f8c9753a4e5a705187bb94ae655850261ea2..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/package-list +++ /dev/null @@ -1,5 +0,0 @@ -nl.astron.lofar.odtb.mom2otdbadapter -nl.astron.lofar.odtb.mom2otdbadapter.data -nl.astron.lofar.odtb.mom2otdbadapter.mom2listener -nl.astron.lofar.odtb.mom2otdbadapter.otdblistener -nl.astron.lofar.odtb.mom2otdbadapter.test diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/resources/inherit.gif b/SAS/OTB/MoM-OTDB-adapter/doc/resources/inherit.gif deleted file mode 100644 index c814867a13deb0ca7ea2156c6ca1d5a03372af7e..0000000000000000000000000000000000000000 Binary files a/SAS/OTB/MoM-OTDB-adapter/doc/resources/inherit.gif and /dev/null differ diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/serialized-form.html b/SAS/OTB/MoM-OTDB-adapter/doc/serialized-form.html deleted file mode 100644 index 252229b2537c79335a843e37ef2133b7762090c5..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/serialized-form.html +++ /dev/null @@ -1,426 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!--NewPage--> -<HTML> -<HEAD> -<!-- Generated by javadoc (build 1.5.0_05) on Wed Jan 04 16:44:32 CET 2006 --> -<TITLE> -Serialized Form -</TITLE> - - -<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> - -<SCRIPT type="text/javascript"> -function windowTitle() -{ - parent.document.title="Serialized Form"; -} -</SCRIPT> -<NOSCRIPT> -</NOSCRIPT> - -</HEAD> - -<BODY BGCOLOR="white" onload="windowTitle();"> - - -<!-- ========= START OF TOP NAVBAR ======= --> -<A NAME="navbar_top"><!-- --></A> -<A HREF="#skip-navbar_top" title="Skip navigation links"></A> -<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> -<TR> -<TD COLSPAN=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-files/index-1.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>nl.astron.lofar.odtb.mom2otdbadapter.data</B></FONT></TH> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation"><!-- --></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="nl/astron/lofar/odtb/mom2otdbadapter/data/LofarObservation.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.data">nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation</A> extends java.lang.Object 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> -mom2Id</H3> -<PRE> -int <B>mom2Id</B></PRE> -<DL> -<DD>mom2Id of the lofar observation (mom2 <-> otdb) - e.g. 200 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -status</H3> -<PRE> -java.lang.String <B>status</B></PRE> -<DL> -<DD>status of a lofar observation, (mom2 <-> otdb) - e.g. being specified. -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -measurementMom2Ids</H3> -<PRE> -java.lang.String <B>measurementMom2Ids</B></PRE> -<DL> -<DD>mom2Ids of the measurements that belongs to the lofarobservation (mom2 <-> otdb) - e.g. [201,202,203] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -angleTimes</H3> -<PRE> -java.lang.String <B>angleTimes</B></PRE> -<DL> -<DD>angles times in seconds. (mom2 <-> otdb) - e.g. [+0,+30,+60] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -timeStamp</H3> -<PRE> -java.lang.String <B>timeStamp</B></PRE> -<DL> -<DD>timestamp of status change in UTC (mom2 <-> otdb) - e.g. 2005-Dec-22 15:00:00 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -subbands</H3> -<PRE> -java.lang.String <B>subbands</B></PRE> -<DL> -<DD>subbands that must be used (mom2 -> otdb) - e.g. [1,3,5,7] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -backend</H3> -<PRE> -java.lang.String <B>backend</B></PRE> -<DL> -<DD>backend that must be used (mom2 -> otdb) - e.g. Transient -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -arrayConfiguration</H3> -<PRE> -java.lang.String <B>arrayConfiguration</B></PRE> -<DL> -<DD>Array configuration (mom2 -> otdb) - e.g. Detailed -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -stations</H3> -<PRE> -java.lang.String <B>stations</B></PRE> -<DL> -<DD>Stations that belongs to the array configuration (mom2 -> otdb) - e.g. [CS001,CS002] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -srgConfiguration</H3> -<PRE> -java.lang.String <B>srgConfiguration</B></PRE> -<DL> -<DD>SRG configuration (mom2 -> otdb) - e.g. SA1 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -samplingFrequency</H3> -<PRE> -java.lang.Integer <B>samplingFrequency</B></PRE> -<DL> -<DD>Sampling frequency in Hz (mom2 -> otdb) - e.g. 160000000 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -bandSelection</H3> -<PRE> -java.lang.String <B>bandSelection</B></PRE> -<DL> -<DD>Band selection (mom2 -> otdb) - e.g. LB_10_90 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -angle1</H3> -<PRE> -java.lang.String <B>angle1</B></PRE> -<DL> -<DD>Angle 1 (mom2 -> otdb) - e.g. [6.123662, 5.233748, 1459568] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -angle2</H3> -<PRE> -java.lang.String <B>angle2</B></PRE> -<DL> -<DD>Angle 2 (mom2 -> otdb) - e.g. [1.026719, 0,711018, 0384089] -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -directionType</H3> -<PRE> -java.lang.String <B>directionType</B></PRE> -<DL> -<DD>Direction type (mom2 -> otdb) - e.g. J2000 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -requestedDuration</H3> -<PRE> -int <B>requestedDuration</B></PRE> -<DL> -<DD>requested duration is milliseconds (mom2 -> otdb) - e.g. 840000 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -startTime</H3> -<PRE> -java.lang.String <B>startTime</B></PRE> -<DL> -<DD>start time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:50:00 -<P> -<DL> -</DL> -</DL> -<HR> -<H3> -endTime</H3> -<PRE> -java.lang.String <B>endTime</B></PRE> -<DL> -<DD>end time of observation (mom2 <- otdb) - e.g. 2005-Dec-22 14:53:00 -<P> -<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>nl.astron.lofar.odtb.mom2otdbadapter.otdblistener</B></FONT></TH> -</TR> -</TABLE> - -<P> -<A NAME="nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod"><!-- --></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="nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TimePeriod.html" title="class in nl.astron.lofar.odtb.mom2otdbadapter.otdblistener">nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TimePeriod</A> extends java.lang.Object 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> -startTime</H3> -<PRE> -java.util.Date <B>startTime</B></PRE> -<DL> -<DL> -</DL> -</DL> -<HR> -<H3> -endTime</H3> -<PRE> -java.util.Date <B>endTime</B></PRE> -<DL> -<DL> -</DL> -</DL> - -<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-files/index-1.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> - -</BODY> -</HTML> diff --git a/SAS/OTB/MoM-OTDB-adapter/doc/stylesheet.css b/SAS/OTB/MoM-OTDB-adapter/doc/stylesheet.css deleted file mode 100644 index 6d31fdbc7f01bfea6d765f2aa968fbd6ec8b1203..0000000000000000000000000000000000000000 --- a/SAS/OTB/MoM-OTDB-adapter/doc/stylesheet.css +++ /dev/null @@ -1,29 +0,0 @@ -/* Javadoc style sheet */ - -/* Define colors, fonts and other style attributes here to override the defaults */ - -/* Page background color */ -body { background-color: #FFFFFF } - -/* Headings */ -h1 { font-size: 145% } - -/* Table colors */ -.TableHeadingColor { background: #CCCCFF } /* Dark mauve */ -.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */ -.TableRowColor { background: #FFFFFF } /* White */ - -/* Font used in left-hand frame lists */ -.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif } -.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } -.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } - -/* Navigation bar fonts and colors */ -.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */ -.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */ -.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;} -.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;} - -.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} -.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} - diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.java index b8d9a84e4aa24c91f54abdf895dc2d558b5c7806..364dbf9bf786d8817c8f05e93318cb7d683918e0 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/MomOtdbAdapter.java @@ -21,14 +21,11 @@ import nl.astron.lofar.odtb.mom2otdbadapter.mom2listener.HttpServer; import nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.OTDBListener; import nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.Queue; import nl.astron.lofar.odtb.mom2otdbadapter.otdblistener.TaskExecutor; -import nl.astron.lofar.sas.otb.jotdb2.jInitCPPLogger; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.log4j.PropertyConfigurator; -import com.sun.corba.se.impl.orb.ORBConfiguratorImpl.ConfigParser; - public class MomOtdbAdapter { private static Log log = LogFactory.getLog(MomOtdbAdapter.class); @@ -66,35 +63,6 @@ public class MomOtdbAdapter { // server.start(); } - // /** - // * Parse arguments - // * @param args - // * @throws Exception - // */ - // protected void parseArguments(String[] args) throws Exception { - // - // if (args.length > 0) { - // for (int i = 0; i < args.length-1; i= i+2) { - // String argument = args[i]; - // String value = args[i+1]; - // parseArgument(argument, value); - // - // } - // } - // } - - // /** - // * Parse one argument - // * @param argument - // * @param value - // * @throws Exception - // */ - // protected void parseArgument(String argument, String value) - // throws Exception { - // if (argument.equals("-u")) { - // username = value; - // } - // } /** * @param args diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/config/ConfigXMLParser.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/config/ConfigXMLParser.java index f0af2024c97b2a55544abdf362f5cae519022d44..48435d7cc05336f4a82e74113500ce5872c638ce 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/config/ConfigXMLParser.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/config/ConfigXMLParser.java @@ -1,10 +1,12 @@ package nl.astron.lofar.odtb.mom2otdbadapter.config; +import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; +import java.io.InputStreamReader; +import java.io.PrintWriter; import java.net.URISyntaxException; -import java.net.URL; import java.util.HashMap; import java.util.Map; @@ -41,14 +43,27 @@ public class ConfigXMLParser { * @param document * xml document * @return LofarObservation - * @throws Exception - * @throws URISyntaxException - * @throws FileNotFoundException + * @throws Exception + * @throws URISyntaxException + * @throws FileNotFoundException */ public static Configuration parse(File xml) throws Exception { - ClassLoader classLoader = (ClassLoader) Thread.currentThread().getContextClassLoader(); - URL xsdFile = classLoader.getResource("config.xsd"); - Document document = XMLConverter.convertXMLToDocument(new InputSource(new FileInputStream(xml)), new File(xsdFile.toURI())); + log.info("Mom-otdb-adapter config file: " + xml.getPath()); + ClassLoader classLoader = (ClassLoader) Thread.currentThread().getContextClassLoader(); + BufferedReader reader = new BufferedReader(new InputStreamReader(classLoader.getResourceAsStream("config.xsd"))); + File configXsd = new File("./conf/config.xsd"); + if (configXsd.exists()) { + configXsd.delete(); + } + PrintWriter writer = new PrintWriter(configXsd); + String line = null; + while ((line = reader.readLine()) != null) { + writer.write(line); + } + writer.flush(); + writer.close(); + reader.close(); + Document document = XMLConverter.convertXMLToDocument(new InputSource(new FileInputStream(xml)), configXsd); Configuration configuration = new Configuration(); /* @@ -57,16 +72,14 @@ public class ConfigXMLParser { Node element = document.getDocumentElement(); Map<String, Element> elementsMap = getElementMap(element.getChildNodes()); - configuration.setMom2(parseMom2Configuration(elementsMap.get(MOM2))); - - if (elementsMap.containsKey(STUB)) { - configuration.setRepository(parseStubConfiguration(elementsMap.get(STUB))); - }else if (elementsMap.containsKey(OTDB)) { - configuration.setRepository(parseOTDBConfiguration(elementsMap.get(OTDB))); - } - configuration.setAdapter(parseAdapterConfiguration(elementsMap.get(ADAPTER))); - + configuration.setMom2(parseMom2Configuration(elementsMap.get(MOM2))); + if (elementsMap.containsKey(STUB)) { + configuration.setRepository(parseStubConfiguration(elementsMap.get(STUB))); + } else if (elementsMap.containsKey(OTDB)) { + configuration.setRepository(parseOTDBConfiguration(elementsMap.get(OTDB))); + } + configuration.setAdapter(parseAdapterConfiguration(elementsMap.get(ADAPTER))); return configuration; } @@ -74,13 +87,13 @@ public class ConfigXMLParser { Map<String, Element> elements = getElementMap(mom2Element.getChildNodes()); Mom2Configuration mom2Configuration = new Mom2Configuration(); mom2Configuration.setUsername(getValue(elements.get("username"))); - mom2Configuration.setPassword(getValue(elements.get("password"))); + mom2Configuration.setPassword(getValue(elements.get("password"))); mom2Configuration.setAuthUrl(getValue(elements.get("authurl"))); mom2Configuration.setMom2ImportUrl(getValue(elements.get("mom2-import-url"))); mom2Configuration.setMom2SchemasUrl(getValue(elements.get("mom2-schemas-url"))); return mom2Configuration; } - + private static StubConfiguration parseStubConfiguration(Element element) { Map<String, Element> elements = getElementMap(element.getChildNodes()); StubConfiguration configuration = new StubConfiguration(); @@ -94,10 +107,10 @@ public class ConfigXMLParser { configuration.setInterval(AstronConverter.toInteger(getValue(elements.get("interval")))); configuration.setTemplateId(AstronConverter.toInteger(getValue(elements.get("uvObservationTemplateId")))); configuration.setRmiPort(AstronConverter.toInteger(getValue(elements.get("rmiport")))); - configuration.setRmiHost(getValue(elements.get("rmiport"))); + configuration.setRmiHost(getValue(elements.get("rmiport"))); return configuration; } - + private static AdapterConfiguration parseAdapterConfiguration(Element element) { Map<String, Element> elements = getElementMap(element.getChildNodes()); AdapterConfiguration configuration = new AdapterConfiguration(); @@ -105,13 +118,11 @@ public class ConfigXMLParser { configuration.setKeystoreLocation(getValue(elements.get("keystore-location"))); configuration.setKeystorePassword(getValue(elements.get("keystore-password"))); configuration.setTrustedKeystoreLocation(getValue(elements.get("trusted-keystore-location"))); - configuration.setTrustedKeystorePassword(getValue(elements.get("trusted-keystore-password"))); + configuration.setTrustedKeystorePassword(getValue(elements.get("trusted-keystore-password"))); return configuration; } - - /** * The getValue method returns the value of an node * @@ -129,8 +140,6 @@ public class ConfigXMLParser { return value; } - - /** * Returns the node name without prefix * @@ -147,8 +156,6 @@ public class ConfigXMLParser { return withoutPrefix; } - - private static Map<String, Element> getElementMap(NodeList nodeList) { Map<String, Element> elementMap = new HashMap<String, Element>(); for (int i = 0; i < nodeList.getLength(); i++) { diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.java index 0cd6b6f17050e9627ac0f3d4bdf8192c77258363..abb361abfe1344de960da25073480a068d5d5a22 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/OTDBRepository.java @@ -9,7 +9,6 @@ import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.List; -import java.util.Locale; import java.util.Vector; import nl.astron.lofar.odtb.mom2otdbadapter.config.OTDBConfiguration; @@ -97,8 +96,6 @@ public class OTDBRepository implements Repository { private jConverterInterface converter = null; - // private static final int TEMPLATE_ID = 50091980; - public static final String DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss.SSS"; public static final String OTDB_DATE_TIME_FORMAT = "yyyy-MMM-dd HH:mm:ss"; @@ -118,6 +115,7 @@ public class OTDBRepository implements Repository { * @throws NotBoundException */ public OTDBRepository(OTDBConfiguration config) { + log.info("OTDBRepository started that communicates with OTDB(" + config.getRmiHost() + ":" + config.getRmiPort()); this.config = config; } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/StubRepository.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/StubRepository.java index 58e637f6780544feab4a5b923964bf764fab5fdf..a43324c9fff7cbfce6a696bea276b45e252ea245 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/StubRepository.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/data/StubRepository.java @@ -1,18 +1,26 @@ package nl.astron.lofar.odtb.mom2otdbadapter.data; import java.util.ArrayList; +import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + import nl.astron.lofar.odtb.mom2otdbadapter.util.Mom2OtdbConverter; public class StubRepository implements Repository { - + private Log log = LogFactory.getLog(this.getClass()); private Map<Integer, LofarObservation> observationsMap = new HashMap<Integer, LofarObservation>(); private int lastObservationId = 1; + public StubRepository(){ + log.info("StubRepository started"); + } + @Override public List<LofarObservation> getLatestChanges(Date startDate, Date endDate) throws RepositoryException { List<Integer> observationToRemoved = new ArrayList<Integer>(); @@ -29,9 +37,10 @@ public class StubRepository implements Repository { for (Beam beam : observation.getBeams()) { duration += beam.getDurations().get(0); } - Date endTime = (Date) observation.getStartTime().clone(); - endTime.setSeconds(duration); - observation.setEndTime(endTime); + Calendar cal = Calendar.getInstance(); + cal.setTime(observation.getStartTime()); + cal.set(Calendar.SECOND, cal.get(Calendar.SECOND) + duration); + observation.setEndTime(cal.getTime()); } if (observation.getClockMode().equals("<<Clock160")) { diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServer.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServer.java index e59b09726bfd04da760e52cc0fa926c67d3c02b2..98cb699642d7099192353cf583548549142dbcf7 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServer.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/HttpServer.java @@ -23,6 +23,8 @@ import javax.net.ssl.TrustManagerFactory; import nl.astron.lofar.odtb.mom2otdbadapter.config.Configuration; import nl.astron.lofar.odtb.mom2otdbadapter.data.Repository; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.apache.http.impl.DefaultConnectionReuseStrategy; import org.apache.http.impl.DefaultHttpResponseFactory; import org.apache.http.impl.nio.SSLServerIOEventDispatch; @@ -44,7 +46,7 @@ import org.apache.http.protocol.ResponseDate; import org.apache.http.protocol.ResponseServer; public class HttpServer { - + private static Log log = LogFactory.getLog(HttpServer.class); private static final String JKS = "jks"; private Configuration config; @@ -68,9 +70,11 @@ public class HttpServer { } public void start() throws KeyStoreException, NoSuchAlgorithmException, CertificateException, IOException, UnrecoverableKeyException, KeyManagementException{ + log.info("Starting http server on port " + config.getAdapter().getHttpPort()); FileInputStream keyStoreInputStream = new FileInputStream(new File(config.getAdapter().getKeystoreLocation())); KeyStore keystore = KeyStore.getInstance(JKS); keystore.load(keyStoreInputStream, config.getAdapter().getKeystorePassword().toCharArray()); + log.info("Keystore " + config.getAdapter().getKeystoreLocation() + " loaded"); KeyManagerFactory kmfactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm()); kmfactory.init(keystore, config.getAdapter().getKeystorePassword().toCharArray()); KeyManager[] keymanagers = kmfactory.getKeyManagers(); @@ -79,6 +83,7 @@ public class HttpServer { trustedKeystore.load(trustedKeyStoreInputStream, config.getAdapter().getTrustedKeystorePassword().toCharArray()); TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); tmf.init(trustedKeystore); + log.info("Trusted keystore " + config.getAdapter().getKeystoreLocation() + " loaded"); SSLContext sslcontext = SSLContext.getInstance("TLS"); sslcontext.init(keymanagers, tmf.getTrustManagers(), null); @@ -110,9 +115,10 @@ public class HttpServer { IOEventDispatch ioEventDispatch = new SSLServerIOEventDispatch(handler, sslcontext, sslSessionHandler, params); ListeningIOReactor ioReactor = new DefaultListeningIOReactor(2, params); - + log.info("Http server started on port " + config.getAdapter().getHttpPort()); ioReactor.listen(new InetSocketAddress(config.getAdapter().getHttpPort())); ioReactor.execute(ioEventDispatch); + } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2HttpRequestHandler.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2HttpRequestHandler.java index cfbf1c8ea71a618e8a596ccff24c0b863b4ce8e3..192083916704583abc62a2da1fa8ecf0de9af3c6 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2HttpRequestHandler.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/Mom2HttpRequestHandler.java @@ -1,5 +1,6 @@ package nl.astron.lofar.odtb.mom2otdbadapter.mom2listener; +import java.io.IOException; import java.io.StringReader; import nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation; @@ -7,11 +8,15 @@ import nl.astron.lofar.odtb.mom2otdbadapter.data.Repository; import nl.astron.lofar.odtb.mom2otdbadapter.data.RepositoryException; import nl.astron.util.XMLConverter; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.http.Header; import org.apache.http.HttpEntity; import org.apache.http.HttpEntityEnclosingRequest; import org.apache.http.HttpRequest; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; +import org.apache.http.ParseException; import org.apache.http.protocol.HttpContext; import org.apache.http.protocol.HttpRequestHandler; import org.apache.http.util.EntityUtils; @@ -19,39 +24,75 @@ import org.w3c.dom.Document; import org.xml.sax.InputSource; public class Mom2HttpRequestHandler implements HttpRequestHandler { - + private static Log log = LogFactory.getLog(Mom2HttpRequestHandler.class); private Repository repository; - public Mom2HttpRequestHandler(Repository repository){ + + public Mom2HttpRequestHandler(Repository repository) { this.repository = repository; } - + @Override public void handle(HttpRequest request, HttpResponse response, HttpContext context) { - if (request instanceof HttpEntityEnclosingRequest) { - HttpEntity entity = ((HttpEntityEnclosingRequest) request).getEntity(); - + boolean requestHandledSuccessfull = false; + log.info("handle Mom2 request..."); + if (log.isDebugEnabled()) { + for (Header header : request.getAllHeaders()) { + log.debug("Header: " + header.getName() + " value: " + header.getValue()); + } + } + if (request instanceof HttpEntityEnclosingRequest) { + HttpEntity entity = ((HttpEntityEnclosingRequest) request).getEntity(); + String content = null; try { - String content = EntityUtils.toString(entity); - InputSource inputSource = new InputSource(new StringReader(content)); - Document document = XMLConverter.convertXMLToDocument(inputSource); - LofarObservation lofarObservation = XMLParser - .getLofarObservation(document); - repository.store(lofarObservation); - response.setStatusCode(HttpStatus.SC_OK); - }catch (RepositoryException e) { - response.setStatusCode(HttpStatus.SC_INTERNAL_SERVER_ERROR); - }catch (Exception e) { + content = EntityUtils.toString(entity); + if (log.isDebugEnabled()){ + log.debug(content); + } + } catch (ParseException e) { + response.setStatusCode(HttpStatus.SC_BAD_REQUEST); + response.setReasonPhrase(e.getMessage()); + log.error("Problem with parsing http request: " + e.getMessage(), e); + } catch (IOException e) { response.setStatusCode(HttpStatus.SC_BAD_REQUEST); + response.setReasonPhrase(e.getMessage()); + log.error("Problem with reading http request: " + e.getMessage(), e); } + if (content != null){ + InputSource inputSource = new InputSource(new StringReader(content)); + Document document = null; + try { + document = XMLConverter.convertXMLToDocument(inputSource); + } catch (Exception e) { + response.setStatusCode(HttpStatus.SC_BAD_REQUEST); + response.setReasonPhrase(e.getMessage()); + log.error("Problem with parsing xml content: " + e.getMessage(), e); + } + LofarObservation lofarObservation = XMLParser.getLofarObservation(document); + try { + repository.store(lofarObservation); + response.setStatusCode(HttpStatus.SC_OK); + requestHandledSuccessfull = true; + } catch (RepositoryException e) { + response.setStatusCode(HttpStatus.SC_INTERNAL_SERVER_ERROR); + response.setReasonPhrase(e.getMessage()); + log.fatal("Problem occurred with OTDB: " + e.getMessage(), e); + } + response.setStatusCode(HttpStatus.SC_OK); + } - response.setStatusCode(HttpStatus.SC_OK); - - }else { - response.setStatusCode(HttpStatus.SC_BAD_REQUEST); - } + } else { + response.setStatusCode(HttpStatus.SC_BAD_REQUEST); + response.setReasonPhrase("Content-Type must be 'text/xml'"); + log.error("Request with invalid content, Content-Type must be 'text/xml'"); + + } + if (requestHandledSuccessfull){ + log.info("handle Mom2 request...done"); + }else { + log.info("handle Mom2 request...failed"); + } } - } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.java index 3bba4e47c82fd80e4801260c7d41dbc12fc93a41..de0f8b685a4f0b63830dd505330fe7b158058340 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/mom2listener/XMLParser.java @@ -40,6 +40,7 @@ public class XMLParser { * @return LofarObservation */ public static LofarObservation getLofarObservation(Document document) { + LofarObservation lofarObservation = new LofarObservation(); /* @@ -69,6 +70,7 @@ public class XMLParser { beam.getAngleTimes().add(offSet); offSet += beam.getDurations().get(0); } + log.info("Parsed xml of observation with mom2id: " + lofarObservation.getMom2Id()); return lofarObservation; } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.java index 29f2bf5d6c9961c962a4b55bd31d9be29a34feef..1c03bb6d2304199c3ac0621984b17aecffd972bc 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/OTDBListener.java @@ -1,9 +1,10 @@ package nl.astron.lofar.odtb.mom2otdbadapter.otdblistener; import java.io.IOException; -import java.rmi.UnmarshalException; import java.util.List; +import javax.xml.parsers.ParserConfigurationException; + import nl.astron.lofar.odtb.mom2otdbadapter.config.Configuration; import nl.astron.lofar.odtb.mom2otdbadapter.data.LofarObservation; import nl.astron.lofar.odtb.mom2otdbadapter.data.Repository; @@ -14,8 +15,9 @@ import org.apache.commons.logging.LogFactory; /** * Polls if there are changes in the OTDB database. + * * @author Bastiaan Verhoef - * + * */ public class OTDBListener extends Thread { private static final int MILLISECONDS = 1000; @@ -23,32 +25,37 @@ public class OTDBListener extends Thread { private Log log = LogFactory.getLog(this.getClass()); private int milliseconds = 1000; - + private Configuration configuration; private Queue queue = null; private Repository repository = null; - /** * Constructor - * @param queue Queue where this listener add the tasks - * @param milliseconds interval (in milliseconds) between the retrieval of the changes - * @param repository OTDBRepository where this listener retrieves the changes + * + * @param queue + * Queue where this listener add the tasks + * @param milliseconds + * interval (in milliseconds) between the retrieval of the + * changes + * @param repository + * OTDBRepository where this listener retrieves the changes */ public OTDBListener(Queue queue, Configuration configuration, Repository repository) { this.milliseconds = configuration.getRepository().getInterval() * MILLISECONDS; this.configuration = configuration; this.queue = queue; this.repository = repository; + log.info("OTDBListener started with interval of " + configuration.getRepository().getInterval() + " s."); } /** - * Starts the OTDBListener and retrieves changes with an interval + * Starts the OTDBListener and retrieves changes with an interval */ public void run() { - + while (true) { try { @@ -60,11 +67,13 @@ public class OTDBListener extends Thread { /* * look for new changes in this time period */ - List<LofarObservation> lofarObservations = repository.getLatestChanges(timePeriod.getStartTime(), timePeriod.getEndTime()); + List<LofarObservation> lofarObservations = repository.getLatestChanges(timePeriod.getStartTime(), + timePeriod.getEndTime()); /* - * convert retrieved observations to tasks and add the tasks to the queue + * convert retrieved observations to tasks and add the tasks to + * the queue */ - for (LofarObservation observation: lofarObservations) { + for (LofarObservation observation : lofarObservations) { Task task = convertToTask(observation); if (task != null) { queue.add(task); @@ -80,12 +89,10 @@ public class OTDBListener extends Thread { */ Thread.sleep(milliseconds); } catch (InterruptedException e) { - } catch (UnmarshalException e) { - log.error("UnmarshalException: " + e.getMessage(), e); - }catch (IOException e) { - log.error("IOException: " + e.getMessage(), e); } catch (RepositoryException e) { - log.error("RepositoryException: " + e.getMessage(), e); + log.fatal("Problem occurred with OTDB: " + e.getMessage(), e); + } catch (Exception e) { + log.fatal("Fatal exception occurred: " + e.getMessage(), e); } } @@ -93,21 +100,18 @@ public class OTDBListener extends Thread { /** * Converts a observation to a task using the xml generation + * * @param lofarObservation * @return Task + * @throws ParserConfigurationException + * @throws IOException */ - protected Task convertToTask(LofarObservation lofarObservation) { - try { - Task task = new Task(); - String xml = XMLGenerator.getObservationXml(lofarObservation, configuration.getMom2()); - task.setXml(xml); - task.setMom2Id(lofarObservation.getMom2Id() + ""); - task.setTime(lofarObservation.getTimeStamp()); - return task; - } catch (Exception e) { - log.error(e.getMessage(),e); - - } - return null; + protected Task convertToTask(LofarObservation lofarObservation) throws IOException, ParserConfigurationException { + Task task = new Task(); + String xml = XMLGenerator.getObservationXml(lofarObservation, configuration.getMom2()); + task.setXml(xml); + task.setMom2Id(lofarObservation.getMom2Id() + ""); + task.setTime(lofarObservation.getTimeStamp()); + return task; } } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.java index c738324cbbc8f60dd0f451e93a3d7e83b85aee5e..d11756ae0665f5cba24721c8ccff10bbe1c1339d 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/Queue.java @@ -85,7 +85,9 @@ public class Queue { } isTaskLocked = true; Task task = tasks.get(0); - log.info("Processing task....Number of tasks:" + tasks.size()); + if (log.isDebugEnabled()){ + log.debug("Get task (mom2Id: " + task.getMom2Id() + ") ....Number of tasks:" + tasks.size()); + } notifyAll(); return task; } @@ -99,7 +101,7 @@ public class Queue { if (!file.delete()) { log.error("Can not delete file:" + task.getFileName()); } - log.info("Remove task(" + task.getMom2Id() + ") Number of tasks:" + log.info("Remove task( mom2Id: " + task.getMom2Id() + ") Number of tasks:" + tasks.size()); tasks.remove(0); isTaskLocked = false; @@ -166,8 +168,6 @@ public class Queue { out.write(content); out.close(); fileOutputStream.close(); - // isTimeLocked = false; - // notifyAll(); } /** @@ -177,7 +177,7 @@ public class Queue { */ public synchronized void add(Task task) throws IOException { tasks.add(task); - log.info("Task added. Number of tasks:" + tasks.size()); + log.info("Add task (mom2Id: " + task.getMom2Id() + ") Number of tasks:" + tasks.size()); storeTask(task); notifyAll(); } diff --git a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.java b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.java index a50cfc1db9191976ec0ddef40eccdeba8b5d2554..3a4cfddfff4d7e22ca8e169246e8ec6416aa35e3 100644 --- a/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.java +++ b/SAS/OTB/MoM-OTDB-adapter/src/nl/astron/lofar/odtb/mom2otdbadapter/otdblistener/TaskExecutor.java @@ -70,7 +70,7 @@ public class TaskExecutor extends Thread { * get new task, if no tasks available, wait until new tasks added */ Task task = queue.get(); - log.debug("Process task: " + task.getXml()); + //log.debug("Process task: " + task.getXml()); /* * process task if task process successfull, remove tasks else move * task to the end of the task list @@ -97,12 +97,17 @@ public class TaskExecutor extends Thread { boolean succeed = false; try { httpClient.login(config.getUsername(), config.getPassword()); + log.info("Login " + config.getAuthUrl()); List<BasicNameValuePair> parameters = new ArrayList<BasicNameValuePair>(); parameters.add(new BasicNameValuePair("command", "IMPORTXML2")); parameters.add(new BasicNameValuePair("xmlcontent", task.getXml())); + log.info("Post xml (mom2Id: " + task.getMom2Id() + ") to mom2 " + config.getMom2ImportUrl() ); String result = httpClient.doPost(config.getMom2ImportUrl(), parameters, new StringResponseHandler()); - log.info(result); + if (log.isDebugEnabled()){ + log.debug(result); + } httpClient.logout(); + log.info("Logout " + config.getAuthUrl()); return isSucceed(result); } catch (IOException e) { log.error("IOException:" + e.getMessage(), e); diff --git a/SAS/OTB/MoM-OTDB-adapter/test/keystore-client.jks b/SAS/OTB/MoM-OTDB-adapter/test/keystore-client.jks deleted file mode 100644 index d155d0eb955270331d302b8672240edfb02c1455..0000000000000000000000000000000000000000 Binary files a/SAS/OTB/MoM-OTDB-adapter/test/keystore-client.jks and /dev/null differ diff --git a/SAS/OTB/MoM-OTDB-adapter/test/keystore-server.jks b/SAS/OTB/MoM-OTDB-adapter/test/keystore-server.jks deleted file mode 100644 index 60f6439457b9466e5928373f5423116dd5886320..0000000000000000000000000000000000000000 Binary files a/SAS/OTB/MoM-OTDB-adapter/test/keystore-server.jks and /dev/null differ