eb02d7660b7e2c0de5f106d5ad6d641a343c7e41
.github/workflows/create-docker-image.yml
| ... | ... | @@ -18,6 +18,10 @@ jobs: |
| 18 | 18 | uses: actions/checkout@v4 |
| 19 | 19 | with: |
| 20 | 20 | ref: ${{ github.event_name == 'workflow_dispatch' && github.workflow_dispatch.ref || github.event.workflow_run.head_branch }} |
| 21 | + - name: Set up QEMU |
|
| 22 | + uses: docker/setup-qemu-action@v3 |
|
| 23 | + - name: Set up Docker Buildx |
|
| 24 | + uses: docker/setup-buildx-action@v3 |
|
| 21 | 25 | - name: Login to ghcr.io to upload sailing-analytics image |
| 22 | 26 | uses: docker/login-action@v3 |
| 23 | 27 | with: |
| ... | ... | @@ -54,8 +58,13 @@ jobs: |
| 54 | 58 | with: |
| 55 | 59 | build-args: RELEASE=${{ env.RELEASE }} |
| 56 | 60 | tags: ghcr.io/sap/sailing-analytics:${{ env.RELEASE }}${{ env.BRANCH == 'main' && github.event.inputs.release == '' && ',ghcr.io/sap/sailing-analytics:latest' || env.BRANCH == 'docker-17' && github.event.inputs.release == '' && ',ghcr.io/sap/sailing-analytics:latest-17' || '' }} |
| 61 | + annotations: | |
|
| 62 | + maintainer=axel.uhl@sap.com |
|
| 63 | + index:org.opencontainers.image.title=Sailing Analytics |
|
| 64 | + index:org.opencontainers.image.description=The Sailing Analytics Web Application |
|
| 57 | 65 | file: ${{ env.BRANCH == 'docker-17' && 'docker/Dockerfile_sapsailing_on_sapmachine17' || 'docker/Dockerfile' }} |
| 58 | 66 | context: docker/ |
| 67 | + platforms: linux/amd64,linux/arm64 |
|
| 59 | 68 | push: true |
| 60 | 69 | - name: Clean up copied files |
| 61 | 70 | shell: bash |
.github/workflows/merge-main-into-docker-17.yml
| ... | ... | @@ -17,8 +17,11 @@ jobs: |
| 17 | 17 | fetch-depth: 0 # fetch the whole thing to make sure the histories merge |
| 18 | 18 | - name: Merge main into docker-17 |
| 19 | 19 | uses: devmasx/merge-branch@master |
| 20 | + env: |
|
| 21 | + GH_TOKEN: ${{ secrets.REPO_TOKEN_FOR_MERGE_AND_PUSH }} |
|
| 20 | 22 | with: |
| 21 | 23 | type: now |
| 22 | 24 | from_branch: main |
| 23 | 25 | target_branch: docker-17 |
| 26 | + message: Auto-merging main into docker-17 after successful release build |
|
| 24 | 27 | github_token: ${{ secrets.REPO_TOKEN_FOR_MERGE_AND_PUSH }} |
README.md
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | |
| 3 | 3 | ## About this Project |
| 4 | 4 | |
| 5 | -The Sailing Analytics, formerly known as the "SAP Sailing Analytics," are a solution for portraying and analyzing sailing regattas, supporting training scenarios, and powering the vast archive at https://sapsailing.com. |
|
| 5 | +The Sailing Analytics, formerly known as the "SAP Sailing Analytics," are a solution for portraying and analyzing sailing regattas, supporting training scenarios, and powering the vast archive at https://sapsailing.com. The solution consists of a cloud application with a web-based user interface, as well as three companion apps that integrate with the cloud application. This repository has the code for the cloud-based web application, and two of the three mobile apps (Buoy Pinger and Race Manager). The third companion app (Sail Insight) is found in [another repository](https://github.com/SailTracks/sailinsight). |
|
| 6 | 6 | |
| 7 | 7 | ## Description |
| 8 | 8 | |
| ... | ... | @@ -16,9 +16,30 @@ Sailing provides the perfect platform for SAP to showcase solutions and help the |
| 16 | 16 | |
| 17 | 17 | SAP has a longstanding involvement with sailing and has established a portfolio spanning across teams and regattas. |
| 18 | 18 | |
| 19 | +## Quick Start with Docker Compose |
|
| 20 | + |
|
| 21 | +If you have built or obtained the ``ghcr.io/sap/sailing-analytics:latest`` multi-platform image (currently available for linux/amd64 and linux/arm64 architectures), try this: |
|
| 22 | +``` |
|
| 23 | + cd docker |
|
| 24 | + docker-compose up |
|
| 25 | +``` |
|
| 26 | +Based on the ``docker/docker-compose.yml`` definition you should end up with three running Docker containers: |
|
| 27 | +- a MongoDB server, listening on default port 27017 |
|
| 28 | +- a RabbitMQ server, listening on default port |
|
| 29 | +- a Sailing Analytics server, listening for HTTP requests on port 8888 and for telnet connections to the OSGi console on port 14888 |
|
| 30 | + |
|
| 31 | +Try a request to [``http://127.0.0.1:8888/index.html``](http://127.0.0.1:8888/index.html) or [``http://127.0.0.1:8888/gwt/status``](http://127.0.0.1:8888/gwt/status) to see if things worked. |
|
| 32 | + |
|
| 33 | +To use Java 17, use the ``docker-compose-17.yml`` file instead: |
|
| 34 | + |
|
| 35 | +``` |
|
| 36 | + cd docker |
|
| 37 | + docker-compose -f docker-compose-17.yml up |
|
| 38 | +``` |
|
| 39 | + |
|
| 19 | 40 | ## Requirements |
| 20 | 41 | |
| 21 | -The software can be run on any Linux or Windows machine with ``bash`` installed; it has also been compiled successfully for the ARM platform and was deployed to a Raspberry Pi computer. As a database, MongoDB is required, tested with releases 4.4, 5.0, and 6.0. For use in a replicated scenario (scale-out, high availability), RabbitMQ is required. Docker Compose can be used to tie these three components together, as Docker images are produced on a regular basis. |
|
| 42 | +The software can be run on any Linux or Windows machine with ``bash`` installed; it has also been compiled successfully for the ARM platform and was deployed to a Raspberry Pi computer. As a database, MongoDB is required, tested with releases 4.4, 5.0, and 6.0. For use in a replicated scenario (scale-out, high availability), RabbitMQ is required. A simple Docker Compose set-up can be used to tie these three components together, e.g., for a quick local test and to familiarize yourself with the application, as Docker images are produced on a regular basis. |
|
| 22 | 43 | |
| 23 | 44 | Compute node and database sizing depends on several aspects of your workloads, such as whether live or replay data is to be served, how many different classes with separate leaderboard are racing concurrently, how many competitors are racing in each class, or how many concurrent viewers produce how many requests and which type (e.g., analytical, data mining, or watching a live race). |
| 24 | 45 | |
| ... | ... | @@ -28,11 +49,13 @@ To quantify this at least approximately, here are a few examples for typical nod |
| 28 | 49 | - Large multi-class event with 15 classes with their separate leaderboards, concurrently racing on six course areas: 16GB of RAM, 16 CPUs |
| 29 | 50 | - Archive of 30,000 races with a few thousand visitors per day with varying analytical and replay workloads: 64GB RAM, 2TB NVMe swap, 8 CPUs |
| 30 | 51 | |
| 31 | -A single node typically handles up to 500 concurrent viewers for live events. You will want to scale out accordingly, using the replication pattern offered by the solution which uses RabbitMQ for transaction log shipping. |
|
| 52 | +A single node typically handles up to 500-1000 concurrent viewers for live events. You will want to scale out accordingly, using the replication pattern offered by the solution which uses RabbitMQ for transaction log shipping. |
|
| 32 | 53 | |
| 33 | 54 | ## Contributing |
| 34 | 55 | |
| 35 | -To start contributing, read the onboarding document at the following URL: [https://wiki.sapsailing.com/wiki/howto/onboarding](https://wiki.sapsailing.com/wiki/howto/onboarding). The project welcomes contributions in the form of pull requests, for example, enhancements of the Data Mining functionality, including any sailing-specific metric or dimension you may think of and that you find is still missing so far; or additional features for the race viewer; or a map visualization that does not require a Google Map but uses Open Street Map / Open Layers; landscape automation; improved start sequence analytics; major UI improvements for the administrative layer ("AdminConsole"), etc. |
|
| 56 | +To start contributing, read the onboarding document at the following URL: [https://wiki.sapsailing.com/wiki/howto/onboarding](https://wiki.sapsailing.com/wiki/howto/onboarding). Further documentation can be found in our Wiki at [https://wiki.sapsailing.com](https://wiki.sapsailing.com), serving the content from this repo's ``wiki/`` folder. |
|
| 57 | + |
|
| 58 | +The project welcomes contributions in the form of pull requests, for example, enhancements of the Data Mining functionality, including any sailing-specific metric or dimension you may think of and that you find is still missing so far; or additional features for the race viewer; or a map visualization that does not require a Google Map but uses Open Street Map / Open Layers; landscape automation; improved start sequence analytics; major UI improvements for the administrative layer ("AdminConsole"), etc. |
|
| 36 | 59 | |
| 37 | 60 | The issue tracker at [https://bugzilla.sapsailing.com](https://bugzilla.sapsailing.com) is currently used for any sort of issue and enhancement request tracking. Help to migrate this smoothly to Github Issues would be much appreciated, ideally keeping issue numbers stable due to many references to those Bugzilla bug numbers, be it in the source code, the Wiki, or the build infrastructure. |
| 38 | 61 | |
| ... | ... | @@ -49,16 +72,29 @@ See [here](https://www.sapsailing.com/gwt/Home.html#/imprint/:) for a list of co |
| 49 | 72 | |
| 50 | 73 | ## Building and Running |
| 51 | 74 | |
| 52 | -To build, invoke |
|
| 75 | +This assumes you have completed the onboarding (see again [here](https://wiki.sapsailing.com/wiki/howto/onboarding)) successfully. To build, then invoke |
|
| 76 | + |
|
| 53 | 77 | ``` |
| 54 | 78 | configuration/buildAndUpdateProduct.sh build |
| 55 | 79 | ``` |
| 56 | -If the build was successful you can install the product locally by invoking |
|
| 80 | +This will build the Android companion apps first, then the web application. If the build was successful you can install the product locally by invoking |
|
| 81 | + |
|
| 57 | 82 | ``` |
| 58 | 83 | configuration/buildAndUpdateProduct.sh install [ -s <server-name> ] |
| 59 | 84 | ``` |
| 85 | + |
|
| 60 | 86 | The default server name is taken to be your current branch name, e.g., ``master``. The install goes to ``${HOME}/servers/{server-name}``. You will find a ``start`` script there which you can use to launch the product. |
| 61 | 87 | |
| 88 | +Or you create a release by running |
|
| 89 | + |
|
| 90 | +``` |
|
| 91 | + configuration/buildAndUpdateProduct.sh -L -u -n <release-name> release |
|
| 92 | +``` |
|
| 93 | +which produces a tarball under ``dist/{release-name}-{timestamp}/{release-name}-{timestamp}.tar.gz`` which can then be used for ``scp``-based downloads with the ``refreshInstance.sh`` script under ``java/target``. |
|
| 94 | + |
|
| 95 | +Run the ``buildAndUpdateProduct.sh`` without any arguments to see the sub-commands and options available. |
|
| 96 | + |
|
| 97 | + |
|
| 62 | 98 | ## Downloading, Installing and Running an Official Release |
| 63 | 99 | |
| 64 | 100 | You need to have Java 8 installed. Get one from [here](https://tools.eu1.hana.ondemand.com/#cloud). Either ensure that this JVM's ``java`` executable in on the ``PATH`` or set ``JAVA_HOME`` appropriately. |
| ... | ... | @@ -124,27 +160,6 @@ Then patch or copy ``docker/Dockerfile`` so that it has |
| 124 | 160 | |
| 125 | 161 | (of course with the version tag adjusted to what you used above when you built/tagged the image). This will give you an SAP JVM 8 under ``/opt/sapjvm_8`` in the container which in particular includes the useful ``jvmmon`` utility specific to the SAP JVM 8. |
| 126 | 162 | |
| 127 | -## Docker Compose |
|
| 128 | - |
|
| 129 | -If you have built or obtained the ``ghcr.io/sap/sailing-analytics:latest`` image, try this: |
|
| 130 | -``` |
|
| 131 | - cd docker |
|
| 132 | - docker-compose up |
|
| 133 | -``` |
|
| 134 | -Based on the ``docker/docker-compose.yml`` definition you should end up with three running Docker containers: |
|
| 135 | -- a MongoDB server, listening on default port 27017 |
|
| 136 | -- a RabbitMQ server, listening on default port |
|
| 137 | -- a Sailing Analytics server, listening for HTTP requests on port 8888 and for telnet connections to the OSGi console on port 14888 |
|
| 138 | - |
|
| 139 | -Try a request to [``http://127.0.0.1:8888/index.html``](http://127.0.0.1:8888/index.html) or [``http://127.0.0.1:8888/gwt/status``](http://127.0.0.1:8888/gwt/status) to see if things worked. |
|
| 140 | - |
|
| 141 | -To use Java 17, use the ``docker-compose-17.yml`` file instead: |
|
| 142 | - |
|
| 143 | -``` |
|
| 144 | - cd docker |
|
| 145 | - docker-compose -f docker-compose-17.yml up |
|
| 146 | -``` |
|
| 147 | - |
|
| 148 | 163 | ## Configuration Options, Environment Variables |
| 149 | 164 | |
| 150 | 165 | The server process can be configured in various ways. The corresponding environment variables you may use during installation with ``refreshInstance.sh`` and for setting up your Docker environment can be found in the following files: |
configuration/environments/security-service-master
| ... | ... | @@ -1,5 +1,19 @@ |
| 1 | +TELNET_PORT=14888 |
|
| 2 | +SERVER_PORT=8888 |
|
| 3 | +MONGODB_HOST=dbserver.internal.sapsailing.com |
|
| 4 | +MONGODB_PORT=10202 |
|
| 5 | +EXPEDITION_PORT=2010 |
|
| 6 | +DEPLOY_TO=security_service |
|
| 7 | +REPLICATE_MASTER_SERVLET_PORT=8888 |
|
| 8 | +REPLICATE_MASTER_QUEUE_HOST=rabbit.internal.sapsailing.com |
|
| 9 | +REPLICATE_MASTER_QUEUE_PORT=5672 |
|
| 10 | +REPLICATION_HOST=rabbit.internal.sapsailing.com |
|
| 11 | +ADDITIONAL_JAVA_ARGS="$ADDITIONAL_JAVA_ARGS -Dorg.eclipse.jetty.LEVEL=OFF -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog -Drestore.tracked.races=true -Dpolardata.source.url=https://www.sapsailing.com -XX:ThreadPriorityPolicy=2" |
|
| 12 | +SERVER_STARTUP_NOTIFY=axel.uhl@sap.com |
|
| 13 | +BUILD_COMPLETE_NOTIFY=axel.uhl@sap.com |
|
| 14 | + |
|
| 1 | 15 | # To enable the use of the shared SecurityService and SharedSailingData from security-service.sapsailing.com: |
| 2 | -ADDITIONAL_JAVA_ARGS="$ADDITIONAL_JAVA_ARGS -Dsecurity.sharedAcrossSubdomainsOf=sapsailing.com -Dsecurity.baseUrlForCrossDomainStorage=https://security-service.sapsailing.com -Dgwt.acceptableCrossDomainStorageRequestOriginRegexp=https?://(.*\.)?sapsailing\.com(:[0-9]*)?$" |
|
| 16 | +ADDITIONAL_JAVA_ARGS="$ADDITIONAL_JAVA_ARGS -Dsecurity.sharedAcrossSubdomainsOf=sapsailing.com -Dsecurity.baseUrlForCrossDomainStorage=https://security-service.sapsailing.com -Dgwt.acceptableCrossDomainStorageRequestOriginRegexp=https?://((.*\.)?sapsailing\.com)|((.*\.)?sailing\.omegatiming\.com)(:[0-9]*)?$" |
|
| 3 | 17 | # For the security-service master instance, don't activate replication from security-service |
| 4 | 18 | #REPLICATE_ON_START=com.sap.sse.security.impl.SecurityServiceImpl,com.sap.sailing.shared.server.impl.SharedSailingDataImpl,com.sap.sse.landscape.aws.impl.AwsLandscapeStateImpl |
| 5 | 19 | #REPLICATE_MASTER_SERVLET_HOST=security-service.sapsailing.com |
configuration/environments_scripts/central_reverse_proxy/files/var/www/cgi-bin/github.cgi
| ... | ... | @@ -8,7 +8,11 @@ PUSHER=$( echo "${BODY}" | jq -r '.pusher.email' ) |
| 8 | 8 | logger -t github-cgi "ref is $REF, pusher was $PUSHER" |
| 9 | 9 | # For testing: |
| 10 | 10 | #if [ "${PUSHER}" = "axel.uhl@sap.com" -a "${REF}" = "refs/heads/translation" ]; then |
| 11 | -if [ "${PUSHER}" = "tmsatsls+github.tools.sap_service-tip-git@sap.com" -a "${REF}" = "refs/heads/translation" ]; then |
|
| 11 | +tmsatsls+github.com_service-tip-git@sap.com |
|
| 12 | +# The filter in case this is to be used for github.tools.sap: |
|
| 13 | +#if [ "${PUSHER}" = "tmsatsls+github.tools.sap_service-tip-git@sap.com" -a "${REF}" = "refs/heads/translation" ]; then |
|
| 14 | +# The filter for github.com: |
|
| 15 | +if [ "${PUSHER}" = "tmsatsls+github.com_service-tip-git@sap.com" -a "${REF}" = "refs/heads/translation" ]; then |
|
| 12 | 16 | echo "Identified a push to refs/heads/translation by ${PUSHER}." |
| 13 | 17 | echo "Fetching translation branch from github.tools.sap and pushing it to ssh://trac@sapsailing.com/home/trac/git" |
| 14 | 18 | logger -t github-cgi "fetching translation branch from github.tools.sap and pushing it to ssh://trac@sapsailing.com/home/trac/git" |
configuration/environments_scripts/repo/etc/logrotate.d/httpd
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | compress |
| 9 | 9 | delaycompress |
| 10 | 10 | postrotate |
| 11 | - /bin/systemctl reload httpd.service > /dev/null 2>/dev/null || true |
|
| 11 | + /usr/bin/systemctl reload httpd.service > /dev/null 2>/dev/null || true |
|
| 12 | 12 | mv /var/log/logrotate-target/*.gz /var/log/old |
| 13 | 13 | endscript |
| 14 | 14 | } |
configuration/environments_scripts/repo/var/www/cgi-bin/reverseProxyHealthcheck.sh
| ... | ... | @@ -101,11 +101,28 @@ randomise() { |
| 101 | 101 | echo $(($RANDOM % 5 + $1 )) |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | +getListOfIpsForCidr() { |
|
| 105 | + # $1: a CIDR, such as 172.10.0.0/32 |
|
| 106 | + # Outputs the list of IP addresses that match the CIDR. |
|
| 107 | + # Tries to read this from a file in ${CACHE_LOCATION} |
|
| 108 | + # whose name is inferred from the CIDR parameter. If not |
|
| 109 | + # found, nmap is used to produce that list, and it is |
|
| 110 | + # written to the file in the ${CACHE_LOCATION} so it can |
|
| 111 | + # be found the next time requested |
|
| 112 | + cidr="${1}" |
|
| 113 | + FILE_WITH_IPS_FOR_CIDR=${CACHE_LOCATION}/$( echo "${cidr}" | tr '/' '_' ) |
|
| 114 | + if [ -f ${FILE_WITH_IPS_FOR_CIDR} ]; then |
|
| 115 | + cat ${FILE_WITH_IPS_FOR_CIDR} |
|
| 116 | + else |
|
| 117 | + nmap -sL -n ${cidr} | head -n -1 | tail -n +2 | sed -e 's/^.*\<\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\)$/\1/' | tee ${FILE_WITH_IPS_FOR_CIDR} |
|
| 118 | + fi |
|
| 119 | +} |
|
| 120 | + |
|
| 104 | 121 | getAzCidr() { |
| 105 | 122 | # $1: path to a file containing one CIDR per line |
| 106 | 123 | # $2: an IP address to obtain the subnet CIDR for |
| 107 | 124 | for cidr in $( cat "${1}" ); do |
| 108 | - if nmap -sL -n ${cidr} | head -n -1 | tail -n +2 | grep -q ${2}; then |
|
| 125 | + if getListOfIpsForCidr ${cidr} | grep -q ${2}; then |
|
| 109 | 126 | echo ${cidr} |
| 110 | 127 | fi |
| 111 | 128 | done |
configuration/environments_scripts/sailing_server/files/usr/local/bin/sailing
| ... | ... | @@ -31,11 +31,11 @@ echo "Executing with $1 at `date`" >>/var/log/sailing.err |
| 31 | 31 | |
| 32 | 32 | start_servers() { |
| 33 | 33 | /usr/local/bin/update_authorized_keys_for_landscape_managers $( cat ${SSH_KEY_READER_BEARER_TOKEN} ) https://security-service.sapsailing.com /root 2>&1 >>/var/log/sailing.err |
| 34 | - cp /home/sailing/code/configuration/cp_root_mail_properties /usr/local/bin |
|
| 34 | + cp ${GIT_REPOSITORY}/configuration/cp_root_mail_properties /usr/local/bin |
|
| 35 | 35 | chown root /usr/local/bin/cp_root_mail_properties |
| 36 | 36 | chgrp root /usr/local/bin/cp_root_mail_properties |
| 37 | 37 | chmod 755 /usr/local/bin/cp_root_mail_properties |
| 38 | - cp /home/sailing/code/configuration/cp_root_mail_properties_sudoers /etc/sudoers.d |
|
| 38 | + cp ${GIT_REPOSITORY}/configuration/cp_root_mail_properties_sudoers /etc/sudoers.d |
|
| 39 | 39 | if which $EC2_METADATA_CMD && $EC2_METADATA_CMD -d | sed "s/user-data\: //g" | grep "^image-upgrade$"; then |
| 40 | 40 | echo "Found image-upgrade in EC2 user data; upgrading image, then probably shutting down for AMI creation depending on the no-shutdown user data string..." >>/var/log/sailing.err |
| 41 | 41 | $GIT_REPOSITORY/configuration/imageupgrade.sh |
docker/Dockerfile-raspi.tpl
| ... | ... | @@ -1,18 +0,0 @@ |
| 1 | -FROM donaldduck70/openjdk:1.8.0_242 |
|
| 2 | -LABEL maintainer=axel.uhl@gmx.de |
|
| 3 | -# Download and extract the release |
|
| 4 | -WORKDIR /home/sailing/servers/server |
|
| 5 | -RUN apt-get update \ |
|
| 6 | - && apt-get install -y vim telnet dnsutils net-tools jq |
|
| 7 | -COPY vimrc /root/.vimrc |
|
| 8 | -RUN wget -O /tmp/rds.pem https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem \ |
|
| 9 | - && keytool -importcert -alias AWSRDS -file /tmp/rds.pem -keystore /usr/lib/jvm/java-8-openjdk-arm64/jre/lib/security/cacerts -noprompt -storepass changeit \ |
|
| 10 | - && rm /tmp/rds.pem |
|
| 11 | -RUN wget -O /tmp/RELEASE.tar.gz http://releases.sapsailing.com/RELEASE/RELEASE.tar.gz \ |
|
| 12 | - && tar xzvpf /tmp/RELEASE.tar.gz \ |
|
| 13 | - && rm /tmp/RELEASE.tar.gz |
|
| 14 | -COPY env.sh . |
|
| 15 | -COPY start . |
|
| 16 | -COPY JavaSE-11.profile . |
|
| 17 | -EXPOSE 8888 14888 8000 7091 6666 |
|
| 18 | -CMD [ "/home/sailing/servers/server/start", "fg" ] |
docker/makeImageForLatestRelease
| ... | ... | @@ -19,13 +19,9 @@ else |
| 19 | 19 | cp "$GITROOT/java/target/start" "$DOCKERDIR" |
| 20 | 20 | cp "$GITROOT/java/target/configuration/JavaSE-11.profile" "$DOCKERDIR" |
| 21 | 21 | cd "$DOCKERDIR" |
| 22 | - docker build --build-arg RELEASE=${release} -t ghcr.io/sap/sailing-analytics:${release} . |
|
| 22 | + docker buildx create --name=container --driver=docker-container --use --bootstrap |
|
| 23 | + docker buildx build --builder=container --platform=linux/amd64,linux/arm64 --build-arg RELEASE=${release} -t ghcr.io/sap/sailing-analytics:${release} --push . |
|
| 23 | 24 | echo "Cleaning up..." |
| 24 | 25 | rm start env.sh JavaSE-11.profile ${RELEASE_TAR_GZ_FILENAME} release-notes.txt |
| 25 | - docker push ghcr.io/sap/sailing-analytics:${release} |
|
| 26 | - if [ "$SET_LATEST" = "1" ]; then |
|
| 27 | - docker tag ghcr.io/sap/sailing-analytics:${release} ghcr.io/sap/sailing-analytics:latest |
|
| 28 | - docker push ghcr.io/sap/sailing-analytics:latest |
|
| 29 | - fi |
|
| 30 | 26 | fi |
| 31 | 27 | popd |
docker/makeImageForLatestRelease-arm
| ... | ... | @@ -0,0 +1,31 @@ |
| 1 | +#!/bin/bash |
|
| 2 | +release_prefix=$1 |
|
| 3 | +GITROOT="`dirname $0`/.." |
|
| 4 | +DOCKERDIR="${GITROOT}/docker" |
|
| 5 | +DOCKERFILE="$DOCKERDIR/Dockerfile" |
|
| 6 | +if [ "${release_prefix}" = "" ]; then |
|
| 7 | + SET_LATEST=1 |
|
| 8 | + release_prefix="main-" |
|
| 9 | +fi |
|
| 10 | +pushd "${DOCKERDIR}" |
|
| 11 | +RELEASE_TAR_GZ_FILENAME=$( ${GITROOT}/configuration/github-download-release-assets.sh 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 "${release_prefix}" ) |
|
| 12 | +if [ "${RELEASE_TAR_GZ_FILENAME}" = "" ]; then |
|
| 13 | + echo "No release with prefix ${release_prefix} found" >&2 |
|
| 14 | +else |
|
| 15 | + release=$( echo ${RELEASE_TAR_GZ_FILENAME} | sed -e 's/\.tar\.gz//' ) |
|
| 16 | + echo Release is ${release} |
|
| 17 | + echo "Copying files from GITROOT $GITROOT into Docker workspace" |
|
| 18 | + cp "$GITROOT/java/target/env.sh" "$DOCKERDIR" |
|
| 19 | + cp "$GITROOT/java/target/start" "$DOCKERDIR" |
|
| 20 | + cp "$GITROOT/java/target/configuration/JavaSE-11.profile" "$DOCKERDIR" |
|
| 21 | + cd "$DOCKERDIR" |
|
| 22 | + docker build --build-arg RELEASE=${release} -t ghcr.io/sap/sailing-analytics:${release}-arm . |
|
| 23 | + echo "Cleaning up..." |
|
| 24 | + rm start env.sh JavaSE-11.profile ${RELEASE_TAR_GZ_FILENAME} release-notes.txt |
|
| 25 | + docker push ghcr.io/sap/sailing-analytics:${release}-arm |
|
| 26 | + if [ "$SET_LATEST" = "1" ]; then |
|
| 27 | + docker tag ghcr.io/sap/sailing-analytics:${release}-arm ghcr.io/sap/sailing-analytics:latest-arm |
|
| 28 | + docker push ghcr.io/sap/sailing-analytics:latest-arm |
|
| 29 | + fi |
|
| 30 | +fi |
|
| 31 | +popd |
docker/makeImageForLatestRelease-raspi
| ... | ... | @@ -1,25 +0,0 @@ |
| 1 | -#!/bin/bash |
|
| 2 | -release=$1 |
|
| 3 | -if [ "${release}" = "" ]; then |
|
| 4 | - SET_LATEST=1 |
|
| 5 | - release=$(wget -O - http://releases.sapsailing.com/ 2>/dev/null | grep build- | tail -1 | sed -e 's/^.*\(build-[0-9]*\).*$/\1/') |
|
| 6 | - echo Latest release is ${release} |
|
| 7 | -fi |
|
| 8 | -GITROOT="`dirname $0`/.." |
|
| 9 | -DOCKERDIR="${GITROOT}/docker" |
|
| 10 | -DOCKERFILE="$DOCKERDIR/Dockerfile-raspi" |
|
| 11 | -echo "Copying files from GITROOT $GITROOT into Docker workspace" |
|
| 12 | -cp "$GITROOT/java/target/env.sh" "$DOCKERDIR" |
|
| 13 | -cp "$GITROOT/java/target/start" "$DOCKERDIR" |
|
| 14 | -cp "$GITROOT/java/target/configuration/JavaSE-11.profile" "$DOCKERDIR" |
|
| 15 | -cat ${DOCKERFILE}.tpl | sed -e "s/RELEASE/${release}/g" >${DOCKERFILE} |
|
| 16 | -cd "$DOCKERDIR" |
|
| 17 | -docker build -t sapsailing:${release}-raspi -f ${DOCKERFILE} . |
|
| 18 | -echo "Cleaning up..." |
|
| 19 | -rm start env.sh JavaSE-11.profile ${Dockerfile} |
|
| 20 | -docker tag sapsailing:${release}-raspi donaldduck70/sapsailing:${release}-raspi |
|
| 21 | -docker push donaldduck70/sapsailing:${release}-raspi |
|
| 22 | -if [ "$SET_LATEST" = "1" ]; then |
|
| 23 | - docker tag sapsailing:${release}-raspi donaldduck70/sapsailing:latest-raspi |
|
| 24 | - docker push donaldduck70/sapsailing:latest-raspi |
|
| 25 | -fi |
java/com.sap.sailing.domain.tractracadapter/src/com/sap/sailing/domain/tractracadapter/impl/RaceAndCompetitorStatusWithRaceLogReconciler.java
| ... | ... | @@ -311,68 +311,81 @@ public class RaceAndCompetitorStatusWithRaceLogReconciler { |
| 311 | 311 | */ |
| 312 | 312 | private MaxPointsReason getMaxPointsReason(RaceCompetitorStatusType raceCompetitorStatusType) { |
| 313 | 313 | MaxPointsReason result; |
| 314 | - switch (raceCompetitorStatusType) { |
|
| 315 | - // TODO we expect NSC and perhaps also TLE to show up; support the mapping to MaxPointsReason.NSC / TLE, respectively when they appear |
|
| 316 | - case ABANDONED: |
|
| 317 | - result = MaxPointsReason.NONE; // TODO bug 5154: find out what ABANDONED means and if/how we can translate it to a MaxPointsReason |
|
| 318 | - break; |
|
| 319 | - case BFD: |
|
| 320 | - result = MaxPointsReason.BFD; |
|
| 321 | - break; |
|
| 322 | - case DISQUALIFIED: |
|
| 323 | - result = MaxPointsReason.DSQ; |
|
| 324 | - break; |
|
| 325 | - case DNC: |
|
| 326 | - result = MaxPointsReason.DNC; |
|
| 327 | - break; |
|
| 328 | - case DNF: |
|
| 329 | - result = MaxPointsReason.DNF; |
|
| 330 | - break; |
|
| 331 | - case DONT_RACE: |
|
| 332 | - result = MaxPointsReason.DNS; // TODO bug 5154: find out what DONT_RACE means and if/how we can translate it to a MaxPointsReason; is it DNS? |
|
| 333 | - break; |
|
| 334 | - case FIN: |
|
| 335 | - result = MaxPointsReason.NONE; // TODO bug 5154: find out what FIN means and if/how we can translate it to a MaxPointsReason; does it mean the competitor finished properly? |
|
| 336 | - break; |
|
| 337 | - case FINISH_CONFIRMED: |
|
| 338 | - result = MaxPointsReason.NONE; // TODO bug 5154: find out what FINISH_CONFIRMED means and if/how we can translate it to a MaxPointsReason; does it mean the competitor finished properly? |
|
| 339 | - break; |
|
| 340 | - case MIS: |
|
| 341 | - result = MaxPointsReason.NONE; // TODO bug 5154: find out what MIS means and if/how we can translate it to a MaxPointsReason; does it mean the competitor is "missing?" |
|
| 342 | - break; |
|
| 343 | - case NO_COLLECT: |
|
| 344 | - result = MaxPointsReason.NONE; // TODO bug 5154: find out what NO_COLLECT means and if/how we can translate it to a MaxPointsReason |
|
| 345 | - break; |
|
| 346 | - case NO_DATA: |
|
| 314 | + if (raceCompetitorStatusType == null) { |
|
| 347 | 315 | result = MaxPointsReason.NONE; |
| 348 | - break; |
|
| 349 | - case OCS: |
|
| 350 | - result = MaxPointsReason.OCS; |
|
| 351 | - break; |
|
| 352 | - case RACING: |
|
| 353 | - result = MaxPointsReason.NONE; |
|
| 354 | - break; |
|
| 355 | - case RETIRED: |
|
| 356 | - result = MaxPointsReason.RET; |
|
| 357 | - break; |
|
| 358 | - case UFD: |
|
| 359 | - result = MaxPointsReason.UFD; |
|
| 360 | - break; |
|
| 361 | - case NSC: |
|
| 362 | - result = MaxPointsReason.NSC; |
|
| 363 | - break; |
|
| 364 | - case TLE: |
|
| 365 | - result = MaxPointsReason.TLE; |
|
| 366 | - break; |
|
| 367 | - case SCP: |
|
| 368 | - result = MaxPointsReason.SCP; |
|
| 369 | - break; |
|
| 370 | - case STP: |
|
| 371 | - result = MaxPointsReason.STP; |
|
| 372 | - break; |
|
| 373 | - default: |
|
| 374 | - result = MaxPointsReason.NONE; |
|
| 375 | - break; |
|
| 316 | + } else { |
|
| 317 | + switch (raceCompetitorStatusType) { |
|
| 318 | + // TODO we expect NSC and perhaps also TLE to show up; support the mapping to MaxPointsReason.NSC / TLE, respectively when they appear |
|
| 319 | + case ABANDONED: |
|
| 320 | + result = MaxPointsReason.NONE; // TODO bug 5154: find out what ABANDONED means and if/how we can translate it to a MaxPointsReason |
|
| 321 | + break; |
|
| 322 | + case BFD: |
|
| 323 | + result = MaxPointsReason.BFD; |
|
| 324 | + break; |
|
| 325 | + case DISQUALIFIED: |
|
| 326 | + result = MaxPointsReason.DSQ; |
|
| 327 | + break; |
|
| 328 | + case DNC: |
|
| 329 | + result = MaxPointsReason.DNC; |
|
| 330 | + break; |
|
| 331 | + case DNF: |
|
| 332 | + result = MaxPointsReason.DNF; |
|
| 333 | + break; |
|
| 334 | + case DONT_RACE: |
|
| 335 | + result = MaxPointsReason.DNS; // TODO bug 5154: find out what DONT_RACE means and if/how we can translate it to a MaxPointsReason; is it DNS? |
|
| 336 | + break; |
|
| 337 | + case FIN: |
|
| 338 | + result = MaxPointsReason.NONE; // TODO bug 5154: find out what FIN means and if/how we can translate it to a MaxPointsReason; does it mean the competitor finished properly? |
|
| 339 | + break; |
|
| 340 | + case FINISH_CONFIRMED: |
|
| 341 | + result = MaxPointsReason.NONE; // TODO bug 5154: find out what FINISH_CONFIRMED means and if/how we can translate it to a MaxPointsReason; does it mean the competitor finished properly? |
|
| 342 | + break; |
|
| 343 | + case MIS: |
|
| 344 | + result = MaxPointsReason.NONE; // TODO bug 5154: find out what MIS means and if/how we can translate it to a MaxPointsReason; does it mean the competitor is "missing?" |
|
| 345 | + break; |
|
| 346 | + case NO_COLLECT: |
|
| 347 | + result = MaxPointsReason.NONE; // TODO bug 5154: find out what NO_COLLECT means and if/how we can translate it to a MaxPointsReason |
|
| 348 | + break; |
|
| 349 | + case NO_DATA: |
|
| 350 | + result = MaxPointsReason.NONE; |
|
| 351 | + break; |
|
| 352 | + case OCS: |
|
| 353 | + result = MaxPointsReason.OCS; |
|
| 354 | + break; |
|
| 355 | + case RACING: |
|
| 356 | + result = MaxPointsReason.NONE; |
|
| 357 | + break; |
|
| 358 | + case RETIRED: |
|
| 359 | + result = MaxPointsReason.RET; |
|
| 360 | + break; |
|
| 361 | + case UFD: |
|
| 362 | + result = MaxPointsReason.UFD; |
|
| 363 | + break; |
|
| 364 | + case NSC: |
|
| 365 | + result = MaxPointsReason.NSC; |
|
| 366 | + break; |
|
| 367 | + case TLE: |
|
| 368 | + result = MaxPointsReason.TLE; |
|
| 369 | + break; |
|
| 370 | + case SCP: |
|
| 371 | + result = MaxPointsReason.SCP; |
|
| 372 | + break; |
|
| 373 | + case STP: |
|
| 374 | + result = MaxPointsReason.STP; |
|
| 375 | + break; |
|
| 376 | + case DCT: |
|
| 377 | + result = MaxPointsReason.DCT; |
|
| 378 | + break; |
|
| 379 | + case DNE: |
|
| 380 | + result = MaxPointsReason.DNE; |
|
| 381 | + break; |
|
| 382 | + case RCT: |
|
| 383 | + result = MaxPointsReason.RCT; |
|
| 384 | + break; |
|
| 385 | + default: |
|
| 386 | + result = MaxPointsReason.NONE; |
|
| 387 | + break; |
|
| 388 | + } |
|
| 376 | 389 | } |
| 377 | 390 | return result; |
| 378 | 391 | } |
java/com.sap.sailing.domain/src/com/sap/sailing/domain/ranking/NonPerformanceCurveRankingMetric.java
| ... | ... | @@ -192,7 +192,7 @@ public abstract class NonPerformanceCurveRankingMetric extends AbstractRankingMe |
| 192 | 192 | final Competitor who = legWho.getCompetitor(); |
| 193 | 193 | final Competitor to = legTo.getCompetitor(); |
| 194 | 194 | if (who == to) { |
| 195 | - if (isAssumedToHaveFinishedLeg(timePoint, legWho)) { |
|
| 195 | + if (isAssumedToHaveFinishedLeg(timePoint, legWho) && legWho.getFinishTime() != null) { |
|
| 196 | 196 | result = timePoint.until(legWho.getFinishTime()); // negative time; reached end of leg some time ago |
| 197 | 197 | } else { |
| 198 | 198 | result = Duration.NULL; // still racing in the leg; reaches its own position in no time |
java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/ui/server/SailingServiceWriteImpl.java
| ... | ... | @@ -1529,6 +1529,7 @@ public class SailingServiceWriteImpl extends SailingServiceImpl implements Saili |
| 1529 | 1529 | new Callable<EventDTO>() { |
| 1530 | 1530 | @Override |
| 1531 | 1531 | public EventDTO call() throws Exception { |
| 1532 | + logger.info("User "+SecurityUtils.getSubject().getPrincipal()+" is trying to create event "+eventName); |
|
| 1532 | 1533 | final TimePoint startTimePoint = startDate != null ? new MillisecondsTimePoint(startDate) : null; |
| 1533 | 1534 | final TimePoint endTimePoint = endDate != null ? new MillisecondsTimePoint(endDate) : null; |
| 1534 | 1535 | final URL officialWebsiteURL = officialWebsiteURLAsString != null |
| ... | ... | @@ -1711,14 +1712,15 @@ public class SailingServiceWriteImpl extends SailingServiceImpl implements Saili |
| 1711 | 1712 | RegattaCreationParametersDTO seriesNamesWithFleetNamesAndFleetOrderingAndMedal, |
| 1712 | 1713 | boolean persistent, ScoringSchemeType scoringSchemeType, List<UUID> courseAreaIds, Double buoyZoneRadiusInHullLengths, boolean useStartTimeInference, |
| 1713 | 1714 | boolean controlTrackingFromStartAndFinishTimes, boolean autoRestartTrackingUponCompetitorSetChange, RankingMetrics rankingMetricType) { |
| 1715 | + logger.info("User "+SecurityUtils.getSubject().getPrincipal()+" is trying to create regatta "+regattaName); |
|
| 1714 | 1716 | return getSecurityService().setOwnershipCheckPermissionForObjectCreationAndRevertOnError( |
| 1715 | 1717 | SecuredDomainType.REGATTA, Regatta.getTypeRelativeObjectIdentifier(regattaName), |
| 1716 | 1718 | regattaName, new Callable<RegattaDTO>() { |
| 1717 | 1719 | @Override |
| 1718 | 1720 | public RegattaDTO call() throws Exception { |
| 1719 | - TimePoint startTimePoint = startDate != null ? new MillisecondsTimePoint(startDate) : null; |
|
| 1720 | - TimePoint endTimePoint = endDate != null ? new MillisecondsTimePoint(endDate) : null; |
|
| 1721 | - Regatta regatta = getService().apply(new AddSpecificRegatta(regattaName, boatClassName, |
|
| 1721 | + final TimePoint startTimePoint = startDate != null ? new MillisecondsTimePoint(startDate) : null; |
|
| 1722 | + final TimePoint endTimePoint = endDate != null ? new MillisecondsTimePoint(endDate) : null; |
|
| 1723 | + final Regatta regatta = getService().apply(new AddSpecificRegatta(regattaName, boatClassName, |
|
| 1722 | 1724 | canBoatsOfCompetitorsChangePerRace, competitorRegistrationType, registrationLinkSecret, |
| 1723 | 1725 | startTimePoint, endTimePoint, UUID.randomUUID(), |
| 1724 | 1726 | seriesNamesWithFleetNamesAndFleetOrderingAndMedal, persistent, |
java/com.sap.sailing.server.gateway/src/com/sap/sailing/server/gateway/jaxrs/api/EventsResource.java
| ... | ... | @@ -608,6 +608,7 @@ public class EventsResource extends AbstractSailingServerResource { |
| 608 | 608 | Callable<Util.Triple<Event, LeaderboardGroup, RegattaLeaderboard>> doCreationAction = new Callable<Util.Triple<Event, LeaderboardGroup, RegattaLeaderboard>>() { |
| 609 | 609 | @Override |
| 610 | 610 | public Util.Triple<Event, LeaderboardGroup, RegattaLeaderboard> call() throws Exception { |
| 611 | + logger.info("User "+SecurityUtils.getSubject().getPrincipal()+" is trying to create event "+eventName); |
|
| 611 | 612 | Event event = getSecurityService().setOwnershipCheckPermissionForObjectCreationAndRevertOnError( |
| 612 | 613 | SecuredDomainType.EVENT, EventBaseImpl.getTypeRelativeObjectIdentifier(eventId), |
| 613 | 614 | eventName, ()->getService().apply(new CreateEvent(eventName, eventDescription, startDate, endDate, venueName, isPublic, eventId, |
java/com.sap.sailing.server.gateway/src/com/sap/sailing/server/gateway/trackfiles/impl/ExpeditionAllInOneImporter.java
| ... | ... | @@ -27,6 +27,7 @@ import java.util.stream.Collectors; |
| 27 | 27 | import java.util.stream.StreamSupport; |
| 28 | 28 | |
| 29 | 29 | import org.apache.commons.fileupload.FileItem; |
| 30 | +import org.apache.shiro.SecurityUtils; |
|
| 30 | 31 | import org.apache.shiro.authz.AuthorizationException; |
| 31 | 32 | import org.apache.shiro.subject.Subject; |
| 32 | 33 | import org.json.simple.parser.ParseException; |
| ... | ... | @@ -329,6 +330,7 @@ public class ExpeditionAllInOneImporter { |
| 329 | 330 | final TimePointsOfFirstAndLastFix firstAndLastFixAt = importFixes(filenameWithSuffix, fileItem, jsonHolderForGpsFixImport, jsonHolderForSensorFixImport, errors); |
| 330 | 331 | final TimePoint eventStartDate = firstAndLastFixAt.getFirstFixAt(); |
| 331 | 332 | final TimePoint eventEndDate = firstAndLastFixAt.getLastFixAt(); |
| 333 | + logger.info("Trying to create event "+eventName+" and regatta "+regattaName+" on behalf of user "+SecurityUtils.getSubject().getPrincipal()); |
|
| 332 | 334 | final Iterable<Triple<DynamicTrackedRace, String, String>> trackedRacesAndRaceColumnNamesAndFleetNames = |
| 333 | 335 | createEventStructureWithASingleRaceAndTrackIt( |
| 334 | 336 | filenameWithSuffix, boatClassName, errors, importTimeString, filename, |
java/com.sap.sailing.server.interface/src/com/sap/sailing/server/operationaltransformation/AddSpecificRegatta.java
| ... | ... | @@ -71,7 +71,7 @@ public class AddSpecificRegatta extends AbstractAddRegattaOperation { |
| 71 | 71 | |
| 72 | 72 | @Override |
| 73 | 73 | public Regatta internalApplyTo(RacingEventService toState) throws Exception { |
| 74 | - Regatta regatta = toState.createRegatta(getRegattaName(), getBoatClassName(), |
|
| 74 | + final Regatta regatta = toState.createRegatta(getRegattaName(), getBoatClassName(), |
|
| 75 | 75 | canBoatsOfCompetitorsChangePerRace, competitorRegistrationType, registrationLinkSecret, getStartDate(), |
| 76 | 76 | getEndDate(), getId(), createSeries(toState), persistent, scoringScheme, courseAreaIds, |
| 77 | 77 | buoyZoneRadiusInHullLengths, useStartTimeInference, controlTrackingFromStartAndFinishTimes, |
java/com.sap.sailing.server/src/com/sap/sailing/server/impl/RacingEventServiceImpl.java
| ... | ... | @@ -1879,12 +1879,12 @@ Replicator { |
| 1879 | 1879 | if (useStartTimeInference && controlTrackingFromStartAndFinishTimes) { |
| 1880 | 1880 | throw new IllegalArgumentException("Cannot set both of useStartTimeInference and controlTrackingFromStartAndFinishTimes to true"); |
| 1881 | 1881 | } |
| 1882 | - com.sap.sse.common.Util.Pair<Regatta, Boolean> regattaWithCreatedFlag = getOrCreateRegattaWithoutReplication( |
|
| 1882 | + final com.sap.sse.common.Util.Pair<Regatta, Boolean> regattaWithCreatedFlag = getOrCreateRegattaWithoutReplication( |
|
| 1883 | 1883 | fullRegattaName, boatClassName, canBoatsOfCompetitorsChangePerRace, competitorRegistrationType, |
| 1884 | 1884 | registrationLinkSecret, startDate, endDate, id, series, persistent, scoringScheme, courseAreaIds, |
| 1885 | 1885 | buoyZoneRadiusInHullLengths, useStartTimeInference, controlTrackingFromStartAndFinishTimes, |
| 1886 | 1886 | autoRestartTrackingUponCompetitorSetChange, rankingMetricConstructor); |
| 1887 | - Regatta regatta = regattaWithCreatedFlag.getA(); |
|
| 1887 | + final Regatta regatta = regattaWithCreatedFlag.getA(); |
|
| 1888 | 1888 | if (regattaWithCreatedFlag.getB()) { |
| 1889 | 1889 | onRegattaLikeAdded(regatta); |
| 1890 | 1890 | replicateSpecificRegattaWithoutRaceColumns(regatta); |
| ... | ... | @@ -1916,13 +1916,13 @@ Replicator { |
| 1916 | 1916 | ScoringScheme scoringScheme, Iterable<? extends Serializable> courseAreaIds, Double buoyZoneRadiusInHullLengths, |
| 1917 | 1917 | boolean useStartTimeInference, boolean controlTrackingFromStartAndFinishTimes, |
| 1918 | 1918 | boolean autoRestartTrackingUponCompetitorSetChange, RankingMetricConstructor rankingMetricConstructor) { |
| 1919 | - Regatta regatta = new RegattaImpl(getRaceLogStore(), getRegattaLogStore(), fullRegattaName, |
|
| 1919 | + final Regatta regatta = new RegattaImpl(getRaceLogStore(), getRegattaLogStore(), fullRegattaName, |
|
| 1920 | 1920 | getBaseDomainFactory().getOrCreateBoatClass(boatClassName), canBoatsOfCompetitorsChangePerRace, |
| 1921 | 1921 | competitorRegistrationType, startDate, endDate, series, persistent, scoringScheme, id, |
| 1922 | 1922 | Util.map(courseAreaIds, courseAreaId->getBaseDomainFactory().getExistingCourseAreaById(courseAreaId)), |
| 1923 | 1923 | buoyZoneRadiusInHullLengths, useStartTimeInference, controlTrackingFromStartAndFinishTimes, |
| 1924 | 1924 | autoRestartTrackingUponCompetitorSetChange, rankingMetricConstructor, registrationLinkSecret); |
| 1925 | - boolean wasCreated = addAndConnectRegatta(persistent, regatta); |
|
| 1925 | + final boolean wasCreated = addAndConnectRegatta(persistent, regatta); |
|
| 1926 | 1926 | if (wasCreated) { |
| 1927 | 1927 | logger.info("Created regatta " + regatta.getName() + " (" + hashCode() + ") on " + this); |
| 1928 | 1928 | } |
java/com.sap.sailing.www/release_notes_admin.html
| ... | ... | @@ -23,6 +23,11 @@ |
| 23 | 23 | <div class="mainContent"> |
| 24 | 24 | <h2 class="releaseHeadline">Release Notes - Administration Console</h2> |
| 25 | 25 | <div class="innerContent"> |
| 26 | + <h2 class="articleSubheadline">June 2024</h2> |
|
| 27 | + <ul class="bulletList"> |
|
| 28 | + <li>Upgraded to TracAPI 3.15.8, supporting more TracTrac invalid result markers (IRMs), |
|
| 29 | + in particular DCT, DNE, and RCT.</li> |
|
| 30 | + </ul> |
|
| 26 | 31 | <h2 class="articleSubheadline">May 2024</h2> |
| 27 | 32 | <ul class="bulletList"> |
| 28 | 33 | <li>Reading the wind estimation data from a server during start-up, using the |
java/com.sap.sse.security.common/META-INF/MANIFEST.MF
| ... | ... | @@ -12,3 +12,4 @@ Export-Package: com.sap.sse.security.shared, |
| 12 | 12 | com.sap.sse.security.shared.subscription.chargebee |
| 13 | 13 | Require-Bundle: com.sap.sse.common |
| 14 | 14 | Automatic-Module-Name: com.sap.sse.security.common |
| 15 | +Bundle-ActivationPolicy: lazy |
java/com.sap.sse.security/src/com/sap/sse/security/impl/SecurityServiceImpl.java
| ... | ... | @@ -2826,10 +2826,18 @@ implements ReplicableSecurityService, ClearStateTestSupport { |
| 2826 | 2826 | * These roles are non transitive, hence they can not be granted to other users. |
| 2827 | 2827 | */ |
| 2828 | 2828 | private Role getSubscriptionPlanUserRole(User user, SubscriptionPlanRole planRole) { |
| 2829 | + final Role result; |
|
| 2829 | 2830 | final User qualifiedUser = getSubscriptionPlanRoleQualifiedUser(user, planRole); |
| 2830 | 2831 | final UserGroup qualifiedTenant = getSubscriptionPlanRoleQualifiedTenant(user, qualifiedUser, planRole); |
| 2831 | - return new Role(getRoleDefinition(planRole.getRoleId()), qualifiedTenant, qualifiedUser, |
|
| 2832 | - /* roles acquired through subscription are non-transitive, meaning the user cannot pass them on */ false); |
|
| 2832 | + final RoleDefinition roleDefinition = getRoleDefinition(planRole.getRoleId()); |
|
| 2833 | + if (roleDefinition == null) { |
|
| 2834 | + logger.severe("Role with ID "+planRole.getRoleId()+" for user "+user.getName()+" not found."); |
|
| 2835 | + result = null; |
|
| 2836 | + } else { |
|
| 2837 | + result = new Role(roleDefinition, qualifiedTenant, qualifiedUser, |
|
| 2838 | + /* roles acquired through subscription are non-transitive, meaning the user cannot pass them on */ false); |
|
| 2839 | + } |
|
| 2840 | + return result; |
|
| 2833 | 2841 | } |
| 2834 | 2842 | |
| 2835 | 2843 | /** |
java/com.sap.sse.security/src/com/sap/sse/security/subscription/chargebee/ChargebeeConfiguration.java
| ... | ... | @@ -2,6 +2,8 @@ package com.sap.sse.security.subscription.chargebee; |
| 2 | 2 | |
| 3 | 3 | import java.util.logging.Logger; |
| 4 | 4 | |
| 5 | +import com.sap.sse.common.Util; |
|
| 6 | + |
|
| 5 | 7 | /** |
| 6 | 8 | * Subscription configuration. The system will get these information from server application startup arguments: |
| 7 | 9 | * {@code chargebee.site}, {@code chargebee.apikey} |
| ... | ... | @@ -29,7 +31,7 @@ public class ChargebeeConfiguration { |
| 29 | 31 | String site = System.getProperty(CHARGEBEE_SITE); |
| 30 | 32 | String apiKey = System.getProperty(CHARGEBEE_APIKEY); |
| 31 | 33 | logger.info("Chargebee site: " + site); |
| 32 | - if (site != null && apiKey != null) { |
|
| 34 | + if (Util.hasLength(site) && Util.hasLength(apiKey)) { |
|
| 33 | 35 | instance = new ChargebeeConfiguration(site, apiKey); |
| 34 | 36 | logger.info("Activating Chargebee Configuration and service"); |
| 35 | 37 | } else { |
java/com.tractrac.clientmodule/META-INF/MANIFEST.MF
| ... | ... | @@ -2,7 +2,7 @@ Manifest-Version: 1.0 |
| 2 | 2 | Bundle-ManifestVersion: 2 |
| 3 | 3 | Bundle-Name: TracTrac Client module |
| 4 | 4 | Bundle-SymbolicName: com.tractrac.clientmodule |
| 5 | -Bundle-Version: 3.15.7 |
|
| 5 | +Bundle-Version: 3.15.8 |
|
| 6 | 6 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 |
| 7 | 7 | Bundle-ClassPath: ., |
| 8 | 8 | lib/TracAPI.jar |
java/com.tractrac.clientmodule/README.txt
| ... | ... | @@ -16,6 +16,21 @@ It contains also some files: |
| 16 | 16 | - Manifest.txt -> manifest used to create the test.jar file |
| 17 | 17 | |
| 18 | 18 | ******************************************** |
| 19 | + TracAPI 3.15.8 |
|
| 20 | +******************************************** |
|
| 21 | +This is a final version. It keeps the backward compatibility. |
|
| 22 | + |
|
| 23 | + Release date: 06/06/2024 |
|
| 24 | + |
|
| 25 | + 1) Features |
|
| 26 | + |
|
| 27 | + - Adding new values to the RaceCompetitorStatusType: RCT(Retired after causing a tangle), |
|
| 28 | + DCT(Disqualified after causing a tangle) and DNE(Disqualification not excludable). |
|
| 29 | + (Requested by Radek Masnika, 30/05/2024) |
|
| 30 | + - Adding the method IPosition.getHACC to retrieve the horizontal accuracy (Requested by Chris Terkelsen, |
|
| 31 | + 05/05/2024) |
|
| 32 | + |
|
| 33 | +******************************************** |
|
| 19 | 34 | TracAPI 3.15.7 |
| 20 | 35 | ******************************************** |
| 21 | 36 | This is a final version. It keeps the backward compatibility. |
java/com.tractrac.clientmodule/javadoc/allclasses-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>All Classes (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>All Classes (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/allclasses-noframe.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>All Classes (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>All Classes (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/IIdentifiable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IIdentifiable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IIdentifiable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IIdentifiable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IIdentifiable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/INamed.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>INamed (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>INamed (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="INamed (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="INamed (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/ModelLocator.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ModelLocator (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ModelLocator (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ModelLocator (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ModelLocator (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/AbstractAttachable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>AbstractAttachable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>AbstractAttachable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="AbstractAttachable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="AbstractAttachable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/IAttachable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IAttachable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IAttachable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IAttachable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IAttachable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/IAttachmentKey.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IAttachmentKey (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IAttachmentKey (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IAttachmentKey (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IAttachmentKey (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/IAttachmentManager.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IAttachmentManager (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IAttachmentManager (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IAttachmentManager (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IAttachmentManager (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/class-use/AbstractAttachable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.attachment.AbstractAttachable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.attachment.AbstractAttachable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.attachment.AbstractAttachable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.attachment.AbstractAttachable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/class-use/IAttachable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/class-use/IAttachmentKey.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentKey (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentKey (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentKey (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentKey (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/class-use/IAttachmentManager.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentManager (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentManager (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentManager (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentManager (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.attachment Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.attachment Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.attachment Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.attachment Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/attachment/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.attachment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/class-use/IIdentifiable.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.IIdentifiable (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.IIdentifiable (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.IIdentifiable (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.IIdentifiable (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/class-use/INamed.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.INamed (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.INamed (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.INamed (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.INamed (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/class-use/ModelLocator.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.ModelLocator (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.ModelLocator (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.ModelLocator (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.ModelLocator (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IControlPassing.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPassing (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPassing (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPassing (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPassing (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IControlPassings.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPassings (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPassings (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPassings (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPassings (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IMessageData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IMessageData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IMessageData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IMessageData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IMessageData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IPosition.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPosition (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPosition (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,13 +13,13 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPosition (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPosition (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| 20 | 20 | } |
| 21 | 21 | //--> |
| 22 | -var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6}; |
|
| 22 | +var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6}; |
|
| 23 | 23 | var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; |
| 24 | 24 | var altColor = "altColor"; |
| 25 | 25 | var rowColor = "rowColor"; |
| ... | ... | @@ -178,36 +178,43 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/spatial/IGeoCoordi |
| 178 | 178 | </td> |
| 179 | 179 | </tr> |
| 180 | 180 | <tr id="i5" class="rowColor"> |
| 181 | +<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a></code></td> |
|
| 182 | +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getHACC--">getHACC</a></span>()</code> |
|
| 183 | +<div class="block">Horizontal Accuracy (HACC) represents the error of measured position compared |
|
| 184 | + to the absolute position of the receiver projected in the horizontal plane.</div> |
|
| 185 | +</td> |
|
| 186 | +</tr> |
|
| 187 | +<tr id="i6" class="altColor"> |
|
| 181 | 188 | <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a></code></td> |
| 182 | 189 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getRTKStatus--">getRTKStatus</a></span>()</code> |
| 183 | 190 | <div class="block">Gets the status of the RTK connection.</div> |
| 184 | 191 | </td> |
| 185 | 192 | </tr> |
| 186 | -<tr id="i6" class="altColor"> |
|
| 193 | +<tr id="i7" class="rowColor"> |
|
| 187 | 194 | <td class="colFirst"><code>double</code></td> |
| 188 | 195 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getSpeed--">getSpeed</a></span>()</code> |
| 189 | 196 | <div class="block">Returns the speed of the carrier at the time of the position.</div> |
| 190 | 197 | </td> |
| 191 | 198 | </tr> |
| 192 | -<tr id="i7" class="rowColor"> |
|
| 199 | +<tr id="i8" class="altColor"> |
|
| 193 | 200 | <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a></code></td> |
| 194 | 201 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getTrueHeading--">getTrueHeading</a></span>()</code> |
| 195 | 202 | <div class="block">Returns the true heading at the time of the position.</div> |
| 196 | 203 | </td> |
| 197 | 204 | </tr> |
| 198 | -<tr id="i8" class="altColor"> |
|
| 205 | +<tr id="i9" class="rowColor"> |
|
| 199 | 206 | <td class="colFirst"><code>boolean</code></td> |
| 200 | 207 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#isGPSTiming--">isGPSTiming</a></span>()</code> |
| 201 | 208 | <div class="block">Returns if the time stamp has been retrieved from a GPS device.</div> |
| 202 | 209 | </td> |
| 203 | 210 | </tr> |
| 204 | -<tr id="i9" class="rowColor"> |
|
| 211 | +<tr id="i10" class="altColor"> |
|
| 205 | 212 | <td class="colFirst"><code>void</code></td> |
| 206 | 213 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setDirection-double-">setDirection</a></span>(double direction)</code> |
| 207 | 214 | <div class="block">Sets the direction</div> |
| 208 | 215 | </td> |
| 209 | 216 | </tr> |
| 210 | -<tr id="i10" class="altColor"> |
|
| 217 | +<tr id="i11" class="rowColor"> |
|
| 211 | 218 | <td class="colFirst"><code>void</code></td> |
| 212 | 219 | <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setSpeed-double-">setSpeed</a></span>(double speed)</code> |
| 213 | 220 | <div class="block">Set the speed value</div> |
| ... | ... | @@ -347,6 +354,22 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/spatial/IGeoCoordi |
| 347 | 354 | </dl> |
| 348 | 355 | </li> |
| 349 | 356 | </ul> |
| 357 | +<a name="getHACC--"> |
|
| 358 | +<!-- --> |
|
| 359 | +</a> |
|
| 360 | +<ul class="blockList"> |
|
| 361 | +<li class="blockList"> |
|
| 362 | +<h4>getHACC</h4> |
|
| 363 | +<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> getHACC()</pre> |
|
| 364 | +<div class="block">Horizontal Accuracy (HACC) represents the error of measured position compared |
|
| 365 | + to the absolute position of the receiver projected in the horizontal plane. |
|
| 366 | + The units are millimeters</div> |
|
| 367 | +<dl> |
|
| 368 | +<dt><span class="returnLabel">Returns:</span></dt> |
|
| 369 | +<dd>the Horizontal Accuracy (HACC)</dd> |
|
| 370 | +</dl> |
|
| 371 | +</li> |
|
| 372 | +</ul> |
|
| 350 | 373 | <a name="setDirection-double-"> |
| 351 | 374 | <!-- --> |
| 352 | 375 | </a> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IPositionFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -157,14 +157,15 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 157 | 157 | </tr> |
| 158 | 158 | <tr id="i2" class="altColor"> |
| 159 | 159 | <td class="colFirst"><code><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></code></td> |
| 160 | -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-">createCompressedPosition</a></span>(double lon, |
|
| 160 | +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-java.lang.Integer-">createCompressedPosition</a></span>(double lon, |
|
| 161 | 161 | double lat, |
| 162 | 162 | double height, |
| 163 | 163 | double speed, |
| 164 | 164 | double dir, |
| 165 | 165 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 166 | 166 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> m, |
| 167 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</code> |
|
| 167 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 168 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</code> |
|
| 168 | 169 | <div class="block">Create a compressed position that is a position that can be serialized and |
| 169 | 170 | send by Internet.</div> |
| 170 | 171 | </td> |
| ... | ... | @@ -206,7 +207,7 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 206 | 207 | </tr> |
| 207 | 208 | <tr id="i7" class="rowColor"> |
| 208 | 209 | <td class="colFirst"><code><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></code></td> |
| 209 | -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-">createPosition</a></span>(double lon, |
|
| 210 | +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-java.lang.Integer-">createPosition</a></span>(double lon, |
|
| 210 | 211 | double lat, |
| 211 | 212 | double height, |
| 212 | 213 | double speed, |
| ... | ... | @@ -215,7 +216,8 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 215 | 216 | long time, |
| 216 | 217 | boolean isGPSTiming, |
| 217 | 218 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 218 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</code> |
|
| 219 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 220 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</code> |
|
| 219 | 221 | <div class="block">Create a position</div> |
| 220 | 222 | </td> |
| 221 | 223 | </tr> |
| ... | ... | @@ -262,7 +264,7 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 262 | 264 | </dl> |
| 263 | 265 | </li> |
| 264 | 266 | </ul> |
| 265 | -<a name="createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-"> |
|
| 267 | +<a name="createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-java.lang.Integer-"> |
|
| 266 | 268 | <!-- --> |
| 267 | 269 | </a> |
| 268 | 270 | <ul class="blockList"> |
| ... | ... | @@ -277,7 +279,8 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 277 | 279 | long time, |
| 278 | 280 | boolean isGPSTiming, |
| 279 | 281 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 280 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</pre> |
|
| 282 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 283 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</pre> |
|
| 281 | 284 | <div class="block">Create a position</div> |
| 282 | 285 | <dl> |
| 283 | 286 | <dt><span class="paramLabel">Parameters:</span></dt> |
| ... | ... | @@ -291,6 +294,7 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 291 | 294 | <dd><code>isGPSTiming</code> - if the time stamp has been retrieved from a real GPS device</dd> |
| 292 | 295 | <dd><code>trueHeading</code> - the true heading</dd> |
| 293 | 296 | <dd><code>rtkStatus</code> - the rtk status</dd> |
| 297 | +<dd><code>hacc</code> - the hacc</dd> |
|
| 294 | 298 | <dt><span class="returnLabel">Returns:</span></dt> |
| 295 | 299 | <dd>a position</dd> |
| 296 | 300 | </dl> |
| ... | ... | @@ -340,7 +344,7 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 340 | 344 | </dl> |
| 341 | 345 | </li> |
| 342 | 346 | </ul> |
| 343 | -<a name="createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-"> |
|
| 347 | +<a name="createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-java.lang.Integer-"> |
|
| 344 | 348 | <!-- --> |
| 345 | 349 | </a> |
| 346 | 350 | <ul class="blockList"> |
| ... | ... | @@ -353,7 +357,8 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 353 | 357 | double dir, |
| 354 | 358 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 355 | 359 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> m, |
| 356 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</pre> |
|
| 360 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 361 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</pre> |
|
| 357 | 362 | <div class="block">Create a compressed position that is a position that can be serialized and |
| 358 | 363 | send by Internet. This position doesn't contain temporal information.</div> |
| 359 | 364 | <dl> |
| ... | ... | @@ -366,6 +371,7 @@ extends com.tractrac.common.lib.api.service.IServiceProvider</pre> |
| 366 | 371 | <dd><code>trueHeading</code> - the true heading [0-360]</dd> |
| 367 | 372 | <dd><code>m</code> - the value of the m coordinate (the offset)</dd> |
| 368 | 373 | <dd><code>rtkStatus</code> - the rtk status</dd> |
| 374 | +<dd><code>hacc</code> - the hacc</dd> |
|
| 369 | 375 | <dt><span class="returnLabel">Returns:</span></dt> |
| 370 | 376 | <dd>a compressed position</dd> |
| 371 | 377 | </dl> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IPositionOffset.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionOffset (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionOffset (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionOffset (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionOffset (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IPositionSnapped.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionSnapped (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionSnapped (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionSnapped (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionSnapped (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -130,7 +130,7 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.htm |
| 130 | 130 | <!-- --> |
| 131 | 131 | </a> |
| 132 | 132 | <h3>Methods inherited from interface com.tractrac.model.lib.api.data.<a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></h3> |
| 133 | -<code><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#after-com.tractrac.model.lib.api.data.IPosition-">after</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#after-long-">after</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#before-com.tractrac.model.lib.api.data.IPosition-">before</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#before-long-">before</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getDirection--">getDirection</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getRTKStatus--">getRTKStatus</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getSpeed--">getSpeed</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getTrueHeading--">getTrueHeading</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#isGPSTiming--">isGPSTiming</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setDirection-double-">setDirection</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setSpeed-double-">setSpeed</a></code></li> |
|
| 133 | +<code><a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#after-com.tractrac.model.lib.api.data.IPosition-">after</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#after-long-">after</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#before-com.tractrac.model.lib.api.data.IPosition-">before</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#before-long-">before</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getDirection--">getDirection</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getHACC--">getHACC</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getRTKStatus--">getRTKStatus</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getSpeed--">getSpeed</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#getTrueHeading--">getTrueHeading</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#isGPSTiming--">isGPSTiming</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setDirection-double-">setDirection</a>, <a href="../../../../../../com/tractrac/model/lib/api/data/IPosition.html#setSpeed-double-">setSpeed</a></code></li> |
|
| 134 | 134 | </ul> |
| 135 | 135 | <ul class="blockList"> |
| 136 | 136 | <li class="blockList"><a name="methods.inherited.from.class.com.tractrac.model.lib.api.spatial.IGeoCoordinate"> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/IStartStopData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IStartStopData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IStartStopData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IStartStopData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IStartStopData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/ITimeData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ITimeData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ITimeData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ITimeData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ITimeData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IControlPassing.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassing (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassing (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IControlPassing (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IControlPassing (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IControlPassings.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassings (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassings (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IControlPassings (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IControlPassings (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IMessageData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IMessageData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IMessageData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IMessageData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IMessageData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IPosition.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IPosition (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IPosition (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPosition (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPosition (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -162,14 +162,15 @@ |
| 162 | 162 | </tr> |
| 163 | 163 | <tr class="altColor"> |
| 164 | 164 | <td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></code></td> |
| 165 | -<td class="colLast"><span class="typeNameLabel">IPositionFactory.</span><code><span class="memberNameLink"><a href="../../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-">createCompressedPosition</a></span>(double lon, |
|
| 165 | +<td class="colLast"><span class="typeNameLabel">IPositionFactory.</span><code><span class="memberNameLink"><a href="../../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-java.lang.Integer-">createCompressedPosition</a></span>(double lon, |
|
| 166 | 166 | double lat, |
| 167 | 167 | double height, |
| 168 | 168 | double speed, |
| 169 | 169 | double dir, |
| 170 | 170 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 171 | 171 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> m, |
| 172 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</code> |
|
| 172 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 173 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</code> |
|
| 173 | 174 | <div class="block">Create a compressed position that is a position that can be serialized and |
| 174 | 175 | send by Internet.</div> |
| 175 | 176 | </td> |
| ... | ... | @@ -195,7 +196,7 @@ |
| 195 | 196 | </tr> |
| 196 | 197 | <tr class="rowColor"> |
| 197 | 198 | <td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></code></td> |
| 198 | -<td class="colLast"><span class="typeNameLabel">IPositionFactory.</span><code><span class="memberNameLink"><a href="../../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-">createPosition</a></span>(double lon, |
|
| 199 | +<td class="colLast"><span class="typeNameLabel">IPositionFactory.</span><code><span class="memberNameLink"><a href="../../../../../../../com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-java.lang.Integer-">createPosition</a></span>(double lon, |
|
| 199 | 200 | double lat, |
| 200 | 201 | double height, |
| 201 | 202 | double speed, |
| ... | ... | @@ -204,7 +205,8 @@ |
| 204 | 205 | long time, |
| 205 | 206 | boolean isGPSTiming, |
| 206 | 207 | <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a> trueHeading, |
| 207 | - <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus)</code> |
|
| 208 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true" title="class or interface in java.lang">Byte</a> rtkStatus, |
|
| 209 | + <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> hacc)</code> |
|
| 208 | 210 | <div class="block">Create a position</div> |
| 209 | 211 | </td> |
| 210 | 212 | </tr> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IPositionFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IPositionOffset.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionOffset (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionOffset (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionOffset (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionOffset (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IPositionSnapped.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionSnapped (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionSnapped (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionSnapped (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IPositionSnapped (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/IStartStopData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.IStartStopData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.IStartStopData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IStartStopData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.IStartStopData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/class-use/ITimeData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.data.ITimeData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.data.ITimeData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.ITimeData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.data.ITimeData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.data Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.data Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.data Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.data Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/data/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.data (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/CreateModelException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>CreateModelException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>CreateModelException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="CreateModelException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="CreateModelException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/DataSource.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>DataSource (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>DataSource (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="DataSource (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="DataSource (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/EventType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>EventType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>EventType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="EventType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="EventType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/ICompetitor.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICompetitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICompetitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICompetitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICompetitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/ICompetitorClass.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICompetitorClass (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICompetitorClass (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICompetitorClass (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICompetitorClass (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/IEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/IEventFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IEventFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IEventFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IEventFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IEventFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/IRace.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRace (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRace (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRace (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRace (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/IRaceCompetitor.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceCompetitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceCompetitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceCompetitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceCompetitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/IRaceSerie.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceSerie (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceSerie (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceSerie (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceSerie (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/ITeam.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ITeam (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ITeam (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ITeam (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ITeam (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -150,11 +150,17 @@ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?i |
| 150 | 150 | <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#BFD">BFD</a></span></code> </td> |
| 151 | 151 | </tr> |
| 152 | 152 | <tr class="altColor"> |
| 153 | -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DISQUALIFIED">DISQUALIFIED</a></span></code> </td> |
|
| 153 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DCT">DCT</a></span></code> </td> |
|
| 154 | 154 | </tr> |
| 155 | 155 | <tr class="rowColor"> |
| 156 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DISQUALIFIED">DISQUALIFIED</a></span></code> </td> |
|
| 157 | +</tr> |
|
| 158 | +<tr class="altColor"> |
|
| 156 | 159 | <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DNC">DNC</a></span></code> </td> |
| 157 | 160 | </tr> |
| 161 | +<tr class="rowColor"> |
|
| 162 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DNE">DNE</a></span></code> </td> |
|
| 163 | +</tr> |
|
| 158 | 164 | <tr class="altColor"> |
| 159 | 165 | <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#DNF">DNF</a></span></code> </td> |
| 160 | 166 | </tr> |
| ... | ... | @@ -186,18 +192,21 @@ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?i |
| 186 | 192 | <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#RACING">RACING</a></span></code> </td> |
| 187 | 193 | </tr> |
| 188 | 194 | <tr class="altColor"> |
| 189 | -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#RETIRED">RETIRED</a></span></code> </td> |
|
| 195 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#RCT">RCT</a></span></code> </td> |
|
| 190 | 196 | </tr> |
| 191 | 197 | <tr class="rowColor"> |
| 192 | -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#SCP">SCP</a></span></code> </td> |
|
| 198 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#RETIRED">RETIRED</a></span></code> </td> |
|
| 193 | 199 | </tr> |
| 194 | 200 | <tr class="altColor"> |
| 195 | -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#STP">STP</a></span></code> </td> |
|
| 201 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#SCP">SCP</a></span></code> </td> |
|
| 196 | 202 | </tr> |
| 197 | 203 | <tr class="rowColor"> |
| 198 | -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#TLE">TLE</a></span></code> </td> |
|
| 204 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#STP">STP</a></span></code> </td> |
|
| 199 | 205 | </tr> |
| 200 | 206 | <tr class="altColor"> |
| 207 | +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#TLE">TLE</a></span></code> </td> |
|
| 208 | +</tr> |
|
| 209 | +<tr class="rowColor"> |
|
| 201 | 210 | <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html#UFD">UFD</a></span></code> </td> |
| 202 | 211 | </tr> |
| 203 | 212 | </table> |
| ... | ... | @@ -442,12 +451,39 @@ the order they are declared.</div> |
| 442 | 451 | <a name="SCP"> |
| 443 | 452 | <!-- --> |
| 444 | 453 | </a> |
| 445 | -<ul class="blockListLast"> |
|
| 454 | +<ul class="blockList"> |
|
| 446 | 455 | <li class="blockList"> |
| 447 | 456 | <h4>SCP</h4> |
| 448 | 457 | <pre>public static final <a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceCompetitorStatusType</a> SCP</pre> |
| 449 | 458 | </li> |
| 450 | 459 | </ul> |
| 460 | +<a name="RCT"> |
|
| 461 | +<!-- --> |
|
| 462 | +</a> |
|
| 463 | +<ul class="blockList"> |
|
| 464 | +<li class="blockList"> |
|
| 465 | +<h4>RCT</h4> |
|
| 466 | +<pre>public static final <a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceCompetitorStatusType</a> RCT</pre> |
|
| 467 | +</li> |
|
| 468 | +</ul> |
|
| 469 | +<a name="DCT"> |
|
| 470 | +<!-- --> |
|
| 471 | +</a> |
|
| 472 | +<ul class="blockList"> |
|
| 473 | +<li class="blockList"> |
|
| 474 | +<h4>DCT</h4> |
|
| 475 | +<pre>public static final <a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceCompetitorStatusType</a> DCT</pre> |
|
| 476 | +</li> |
|
| 477 | +</ul> |
|
| 478 | +<a name="DNE"> |
|
| 479 | +<!-- --> |
|
| 480 | +</a> |
|
| 481 | +<ul class="blockListLast"> |
|
| 482 | +<li class="blockList"> |
|
| 483 | +<h4>DNE</h4> |
|
| 484 | +<pre>public static final <a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceCompetitorStatusType</a> DNE</pre> |
|
| 485 | +</li> |
|
| 486 | +</ul> |
|
| 451 | 487 | </li> |
| 452 | 488 | </ul> |
| 453 | 489 | <!-- ============ METHOD DETAIL ========== --> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/RaceLoadingException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>RaceLoadingException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>RaceLoadingException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="RaceLoadingException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="RaceLoadingException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/RaceStatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>RaceStatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>RaceStatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="RaceStatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="RaceStatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/RaceVisibilityType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>RaceVisibilityType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>RaceVisibilityType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="RaceVisibilityType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="RaceVisibilityType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/StartTimeType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>StartTimeType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>StartTimeType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="StartTimeType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="StartTimeType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/CreateModelException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.CreateModelException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.CreateModelException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.CreateModelException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.CreateModelException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/DataSource.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.DataSource (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.DataSource (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.DataSource (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.DataSource (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/EventType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.EventType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.EventType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.EventType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.EventType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/ICompetitor.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ICompetitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ICompetitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/ICompetitorClass.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitorClass (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitorClass (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ICompetitorClass (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ICompetitorClass (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/IEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.IEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.IEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/IEventFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.IEventFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.IEventFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IEventFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IEventFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/IRace.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.IRace (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.IRace (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRace (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRace (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/IRaceCompetitor.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceCompetitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceCompetitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRaceCompetitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRaceCompetitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/IRaceSerie.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceSerie (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceSerie (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRaceSerie (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.IRaceSerie (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/ITeam.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.event.ITeam (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.event.ITeam (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ITeam (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.event.ITeam (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/RaceCompetitorStatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceCompetitorStatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/RaceLoadingException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.RaceLoadingException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.RaceLoadingException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceLoadingException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceLoadingException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/RaceStatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.RaceStatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.RaceStatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceStatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceStatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/RaceVisibilityType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.RaceVisibilityType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.RaceVisibilityType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceVisibilityType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.RaceVisibilityType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/class-use/StartTimeType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.model.lib.api.event.StartTimeType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.model.lib.api.event.StartTimeType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.model.lib.api.event.StartTimeType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.model.lib.api.event.StartTimeType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/event/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/IMetadata.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IMetadata (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IMetadata (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IMetadata (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IMetadata (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/IMetadataContainer.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IMetadataContainer (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IMetadataContainer (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IMetadataContainer (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IMetadataContainer (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/IMetadataFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IMetadataFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IMetadataFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IMetadataFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IMetadataFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/IPropertiesContainer.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPropertiesContainer (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPropertiesContainer (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPropertiesContainer (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPropertiesContainer (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/class-use/IMetadata.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadata (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadata (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadata (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadata (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/class-use/IMetadataContainer.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataContainer (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataContainer (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataContainer (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataContainer (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/class-use/IMetadataFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IMetadataFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/class-use/IPropertiesContainer.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.metadata.IPropertiesContainer (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.metadata.IPropertiesContainer (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IPropertiesContainer (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.metadata.IPropertiesContainer (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.metadata Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.metadata Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.metadata Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.metadata Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/metadata/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.metadata (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IControl.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControl (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControl (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControl (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControl (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IControlPoint.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPoint (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPoint (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPoint (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPoint (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IControlRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IPathRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPathRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPathRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPathRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPathRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IPathRouteFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPathRouteFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPathRouteFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPathRouteFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPathRouteFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IPathSegment.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPathSegment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPathSegment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPathSegment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPathSegment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/IRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/ISegment.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ISegment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ISegment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ISegment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ISegment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IControl.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IControl (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IControl (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControl (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControl (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IControlPoint.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IControlPoint (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IControlPoint (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControlPoint (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControlPoint (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IControlRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IControlRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IControlRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControlRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IControlRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IPathRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IPathRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IPathRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IPathRouteFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IPathRouteFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IPathRouteFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathRouteFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathRouteFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IPathSegment.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IPathSegment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IPathSegment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathSegment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IPathSegment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/IRoute.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.IRoute (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.IRoute (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IRoute (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.IRoute (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/class-use/ISegment.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.route.ISegment (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.route.ISegment (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.ISegment (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.route.ISegment (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/route/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/ISensorData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ISensorData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ISensorData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ISensorData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ISensorData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/class-use/ISensorData.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.sensor.ISensorData (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.sensor.ISensorData (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.sensor.ISensorData (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.sensor.ISensorData (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.sensor Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.sensor Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.sensor Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.sensor Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/sensor/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.sensor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/ICoordinate.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICoordinate (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICoordinate (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICoordinate (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICoordinate (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/ICoordinateSequence.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICoordinateSequence (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICoordinateSequence (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICoordinateSequence (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICoordinateSequence (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/IExtent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IExtent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IExtent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IExtent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IExtent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/IGeoCoordinate.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:36 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:52 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IGeoCoordinate (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IGeoCoordinate (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IGeoCoordinate (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IGeoCoordinate (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/class-use/ICoordinate.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinate (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinate (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinate (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinate (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/class-use/ICoordinateSequence.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinateSequence (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinateSequence (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinateSequence (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.ICoordinateSequence (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/class-use/IExtent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.spatial.IExtent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.spatial.IExtent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.IExtent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.IExtent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/class-use/IGeoCoordinate.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.model.lib.api.spatial.IGeoCoordinate (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.model.lib.api.spatial.IGeoCoordinate (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.IGeoCoordinate (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.model.lib.api.spatial.IGeoCoordinate (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.model.lib.api.spatial Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.model.lib.api.spatial Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.model.lib.api.spatial Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.model.lib.api.spatial Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/model/lib/api/spatial/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.model.lib.api.spatial (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/IEventSubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IEventSubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IEventSubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IEventSubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IEventSubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/IRaceSubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceSubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceSubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceSubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceSubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/ISubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ISubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ISubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ISubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ISubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/ISubscriberFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ISubscriberFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ISubscriberFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ISubscriberFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ISubscriberFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/ISubscriberListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ISubscriberListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ISubscriberListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ISubscriberListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ISubscriberListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/SubscriberInitializationException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/SubscriptionLocator.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>SubscriptionLocator (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>SubscriptionLocator (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="SubscriptionLocator (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="SubscriptionLocator (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/IEventSubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.IEventSubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.IEventSubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.IEventSubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.IEventSubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/IRaceSubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.IRaceSubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.IRaceSubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.IRaceSubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.IRaceSubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/ISubscriber.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriber (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriber (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriber (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriber (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/ISubscriberFactory.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriberFactory (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriberFactory (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriberFactory (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriberFactory (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/ISubscriberListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriberListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.ISubscriberListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriberListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.ISubscriberListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/SubscriberInitializationException.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.subscription.lib.api.SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.subscription.lib.api.SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.subscription.lib.api.SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.subscription.lib.api.SubscriberInitializationException (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/class-use/SubscriptionLocator.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.subscription.lib.api.SubscriptionLocator (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.subscription.lib.api.SubscriptionLocator (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.subscription.lib.api.SubscriptionLocator (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.subscription.lib.api.SubscriptionLocator (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/ICompetitorSensorDataListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/ICompetitorsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ICompetitorsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ICompetitorsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ICompetitorsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ICompetitorsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/IPositionListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/IPositionOffsetListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/IPositionSnappedListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/class-use/ICompetitorSensorDataListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/class-use/ICompetitorsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.ICompetitorsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/class-use/IPositionListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/class-use/IPositionOffsetListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionOffsetListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/class-use/IPositionSnappedListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.competitor.IPositionSnappedListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.competitor Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.competitor Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.competitor Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.competitor Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/competitor/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api.competitor (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/IControlPassingsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPassingsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPassingsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPassingsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPassingsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/IControlPointPositionListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/IControlPointSensorDataListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/IControlRouteChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/IControlsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IControlsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IControlsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IControlsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IControlsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/class-use/IControlPassingsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPassingsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPassingsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPassingsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPassingsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/class-use/IControlPointPositionListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointPositionListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/class-use/IControlPointSensorDataListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlPointSensorDataListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/class-use/IControlRouteChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlRouteChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/class-use/IControlsListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlsListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.control.IControlsListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlsListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.control.IControlsListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.control Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.control Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.control Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.control Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/control/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api.control (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IConnectionStatusListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IEventMessageListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IEventMessageListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IEventMessageListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IEventMessageListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IEventMessageListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/ILiveDataEvent.StatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/ILiveDataEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>ILiveDataEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>ILiveDataEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="ILiveDataEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="ILiveDataEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IMessage.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IMessage (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IMessage (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IMessage (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IMessage (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IServerTimeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IServerTimeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IServerTimeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IServerTimeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IServerTimeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IStoredDataEvent.Type.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/IStoredDataEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IStoredDataEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IStoredDataEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IStoredDataEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IStoredDataEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IConnectionStatusListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IConnectionStatusListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IEventMessageListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.IEventMessageListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.IEventMessageListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IEventMessageListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IEventMessageListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/ILiveDataEvent.StatusType.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.subscription.lib.api.event.ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.subscription.lib.api.event.ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.subscription.lib.api.event.ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.subscription.lib.api.event.ILiveDataEvent.StatusType (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/ILiveDataEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.ILiveDataEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.ILiveDataEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.ILiveDataEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.ILiveDataEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IMessage.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.IMessage (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.IMessage (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IMessage (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IMessage (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IServerTimeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.IServerTimeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.IServerTimeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IServerTimeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IServerTimeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IStoredDataEvent.Type.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Class com.tractrac.subscription.lib.api.event.IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Class com.tractrac.subscription.lib.api.event.IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Class com.tractrac.subscription.lib.api.event.IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Class com.tractrac.subscription.lib.api.event.IStoredDataEvent.Type (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/class-use/IStoredDataEvent.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.event.IStoredDataEvent (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.event.IStoredDataEvent (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IStoredDataEvent (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.event.IStoredDataEvent (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.event Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/event/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api.event (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/IRaceCompetitorListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/IRaceMessageListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceMessageListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceMessageListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceMessageListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceMessageListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/IRaceStartStopTimesChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/IRacesListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRacesListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRacesListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRacesListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRacesListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/IStartStopTimesChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/class-use/IRaceCompetitorListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceCompetitorListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/class-use/IRaceMessageListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceMessageListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceMessageListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceMessageListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceMessageListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/class-use/IRaceStartStopTimesChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRaceStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/class-use/IRacesListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRacesListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.race.IRacesListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRacesListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IRacesListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/class-use/IStartStopTimesChangeListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.race.IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.race.IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.race.IStartStopTimesChangeListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.race Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.race Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.race Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.race Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/race/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api.race (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/IRoutesListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>IRoutesListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>IRoutesListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="IRoutesListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="IRoutesListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/class-use/IRoutesListener.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Interface com.tractrac.subscription.lib.api.route.IRoutesListener (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Interface com.tractrac.subscription.lib.api.route.IRoutesListener (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.route.IRoutesListener (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Interface com.tractrac.subscription.lib.api.route.IRoutesListener (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/package-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/package-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/package-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>com.tractrac.subscription.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>com.tractrac.subscription.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="com.tractrac.subscription.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="com.tractrac.subscription.lib.api.route Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/com/tractrac/subscription/lib/api/route/package-use.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Uses of Package com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Uses of Package com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="../../../../../../script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Uses of Package com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Uses of Package com.tractrac.subscription.lib.api.route (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/constant-values.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Constant Field Values (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Constant Field Values (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Constant Field Values (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Constant Field Values (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/deprecated-list.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Deprecated List (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Deprecated List (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Deprecated List (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Deprecated List (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/help-doc.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>API Help (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>API Help (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="API Help (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="API Help (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/index-all.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Index (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Index (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Index (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Index (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -228,7 +228,7 @@ |
| 228 | 228 | <div class="block">Create a compressed position that is a position that can be serialized and |
| 229 | 229 | send by Internet.</div> |
| 230 | 230 | </dd> |
| 231 | -<dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-">createCompressedPosition(double, double, double, double, double, Double, Double, Byte)</a></span> - Method in interface com.tractrac.model.lib.api.data.<a href="com/tractrac/model/lib/api/data/IPositionFactory.html" title="interface in com.tractrac.model.lib.api.data">IPositionFactory</a></dt> |
|
| 231 | +<dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/data/IPositionFactory.html#createCompressedPosition-double-double-double-double-double-java.lang.Double-java.lang.Double-java.lang.Byte-java.lang.Integer-">createCompressedPosition(double, double, double, double, double, Double, Double, Byte, Integer)</a></span> - Method in interface com.tractrac.model.lib.api.data.<a href="com/tractrac/model/lib/api/data/IPositionFactory.html" title="interface in com.tractrac.model.lib.api.data">IPositionFactory</a></dt> |
|
| 232 | 232 | <dd> |
| 233 | 233 | <div class="block">Create a compressed position that is a position that can be serialized and |
| 234 | 234 | send by Internet.</div> |
| ... | ... | @@ -283,7 +283,7 @@ |
| 283 | 283 | <dd> |
| 284 | 284 | <div class="block">Create a position</div> |
| 285 | 285 | </dd> |
| 286 | -<dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-">createPosition(double, double, double, double, double, double, long, boolean, Double, Byte)</a></span> - Method in interface com.tractrac.model.lib.api.data.<a href="com/tractrac/model/lib/api/data/IPositionFactory.html" title="interface in com.tractrac.model.lib.api.data">IPositionFactory</a></dt> |
|
| 286 | +<dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/data/IPositionFactory.html#createPosition-double-double-double-double-double-double-long-boolean-java.lang.Double-java.lang.Byte-java.lang.Integer-">createPosition(double, double, double, double, double, double, long, boolean, Double, Byte, Integer)</a></span> - Method in interface com.tractrac.model.lib.api.data.<a href="com/tractrac/model/lib/api/data/IPositionFactory.html" title="interface in com.tractrac.model.lib.api.data">IPositionFactory</a></dt> |
|
| 287 | 287 | <dd> |
| 288 | 288 | <div class="block">Create a position</div> |
| 289 | 289 | </dd> |
| ... | ... | @@ -631,6 +631,11 @@ |
| 631 | 631 | <dd> |
| 632 | 632 | <div class="block"><span class="deprecatedLabel">Deprecated.</span></div> |
| 633 | 633 | </dd> |
| 634 | +<dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/data/IPosition.html#getHACC--">getHACC()</a></span> - Method in interface com.tractrac.model.lib.api.data.<a href="com/tractrac/model/lib/api/data/IPosition.html" title="interface in com.tractrac.model.lib.api.data">IPosition</a></dt> |
|
| 635 | +<dd> |
|
| 636 | +<div class="block">Horizontal Accuracy (HACC) represents the error of measured position compared |
|
| 637 | + to the absolute position of the receiver projected in the horizontal plane.</div> |
|
| 638 | +</dd> |
|
| 634 | 639 | <dt><span class="memberNameLink"><a href="com/tractrac/model/lib/api/event/ICompetitor.html#getHandicapToD--">getHandicapToD()</a></span> - Method in interface com.tractrac.model.lib.api.event.<a href="com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></dt> |
| 635 | 640 | <dd> |
| 636 | 641 | <div class="block">Gets the ToD (Time on Distance) handicap</div> |
java/com.tractrac.clientmodule/javadoc/index.html
| ... | ... | @@ -2,9 +2,9 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Subscription - Applications - TracAPI 3.15.7 API</title> |
|
| 7 | +<title>Subscription - Applications - TracAPI 3.15.8 API</title> |
|
| 8 | 8 | <script type="text/javascript"> |
| 9 | 9 | tmpTargetPage = "" + window.location.search; |
| 10 | 10 | if (tmpTargetPage != "" && tmpTargetPage != "undefined") |
java/com.tractrac.clientmodule/javadoc/overview-frame.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Overview List (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Overview List (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
java/com.tractrac.clientmodule/javadoc/overview-summary.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Overview (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Overview (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Overview (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Overview (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
| ... | ... | @@ -71,7 +71,7 @@ |
| 71 | 71 | </a></div> |
| 72 | 72 | <!-- ========= END OF TOP NAVBAR ========= --> |
| 73 | 73 | <div class="header"> |
| 74 | -<h1 class="title">TracAPI 3.15.7</h1> |
|
| 74 | +<h1 class="title">TracAPI 3.15.8</h1> |
|
| 75 | 75 | </div> |
| 76 | 76 | <div class="contentContainer"> |
| 77 | 77 | <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages, and an explanation"> |
java/com.tractrac.clientmodule/javadoc/overview-tree.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Class Hierarchy (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Class Hierarchy (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/javadoc/serialized-form.html
| ... | ... | @@ -2,10 +2,10 @@ |
| 2 | 2 | <!-- NewPage --> |
| 3 | 3 | <html lang="en"> |
| 4 | 4 | <head> |
| 5 | -<!-- Generated by javadoc (1.8.0_402) on Tue Apr 23 12:05:37 UTC 2024 --> |
|
| 5 | +<!-- Generated by javadoc (1.8.0_412) on Thu Jun 06 08:17:53 UTC 2024 --> |
|
| 6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | -<title>Serialized Form (Subscription - Applications - TracAPI 3.15.7 API)</title> |
|
| 8 | -<meta name="date" content="2024-04-23"> |
|
| 7 | +<title>Serialized Form (Subscription - Applications - TracAPI 3.15.8 API)</title> |
|
| 8 | +<meta name="date" content="2024-06-06"> |
|
| 9 | 9 | <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
| 10 | 10 | <script type="text/javascript" src="script.js"></script> |
| 11 | 11 | </head> |
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | <script type="text/javascript"><!-- |
| 14 | 14 | try { |
| 15 | 15 | if (location.href.indexOf('is-external=true') == -1) { |
| 16 | - parent.document.title="Serialized Form (Subscription - Applications - TracAPI 3.15.7 API)"; |
|
| 16 | + parent.document.title="Serialized Form (Subscription - Applications - TracAPI 3.15.8 API)"; |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | catch(err) { |
java/com.tractrac.clientmodule/lib/TracAPI-src.jar
java/com.tractrac.clientmodule/lib/TracAPI.jar
java/com.tractrac.clientmodule/pom.xml
| ... | ... | @@ -8,6 +8,6 @@ |
| 8 | 8 | <version>1.0.0-SNAPSHOT</version> |
| 9 | 9 | </parent> |
| 10 | 10 | <artifactId>com.tractrac.clientmodule</artifactId> |
| 11 | - <version>3.15.7</version> |
|
| 11 | + <version>3.15.8</version> |
|
| 12 | 12 | <packaging>eclipse-plugin</packaging> |
| 13 | 13 | </project> |
java/target/env-default-rules.sh
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | if [ -z "${SERVER_NAME}" ]; then |
| 9 | 9 | SERVER_NAME=MASTER |
| 10 | 10 | fi |
| 11 | -if [ -n "$AUTO_REPLICATE" ]; then |
|
| 11 | +if [ -n "${AUTO_REPLICATE}" ]; then |
|
| 12 | 12 | if [ -z "${REPLICATE_ON_START}" ]; then |
| 13 | 13 | # To start replication upon startup provide the fully-qualified names of the Replicable service classes |
| 14 | 14 | # for which to trigger replication. If you activate this make sure to |
| ... | ... | @@ -29,7 +29,7 @@ fi |
| 29 | 29 | # The name of the message queuing fan-out exchange that this server will use in its role as replication master. |
| 30 | 30 | # Make sure this is unique so that no other master is writing to this exchange at any time. |
| 31 | 31 | if [ -z "${REPLICATION_CHANNEL}" ]; then |
| 32 | - if [ -n "$AUTO_REPLICATE" ]; then |
|
| 32 | + if [ -n "${AUTO_REPLICATE}" ]; then |
|
| 33 | 33 | # This seems to be a replica; use a dedicated outbound channel for "transitive replication" |
| 34 | 34 | REPLICATION_CHANNEL=${SERVER_NAME}-${INSTANCE_NAME} |
| 35 | 35 | else |
| ... | ... | @@ -46,7 +46,7 @@ if [ -z "${SERVER_PORT}" ]; then |
| 46 | 46 | SERVER_PORT=8888 |
| 47 | 47 | fi |
| 48 | 48 | if [ -z "${MONGODB_NAME}" ]; then |
| 49 | - if [ -n "$AUTO_REPLICATE" ]; then |
|
| 49 | + if [ -n "${AUTO_REPLICATE}" ]; then |
|
| 50 | 50 | # This seems to be a replica; use a "phony" DB for all replicas: |
| 51 | 51 | MONGODB_NAME=${SERVER_NAME}-replica |
| 52 | 52 | else |
| ... | ... | @@ -58,7 +58,7 @@ if [ -z "${MONGODB_PORT}" ]; then |
| 58 | 58 | MONGODB_PORT=27017 |
| 59 | 59 | fi |
| 60 | 60 | if [ -z "${MONGODB_HOST}" -a -z "${MONGODB_URI}" ]; then |
| 61 | - if [ -n "$AUTO_REPLICATE" ]; then |
|
| 61 | + if [ -n "${AUTO_REPLICATE}" ]; then |
|
| 62 | 62 | # An auto-replication replica by default assumes it has a local MongoDB replica set running on localhost, |
| 63 | 63 | # called "replica" and running on the default port 27017: |
| 64 | 64 | MONGODB_URI="mongodb://localhost/${MONGODB_NAME}?replicaSet=replica&retryWrites=true&readPreference=nearest" |
| ... | ... | @@ -110,24 +110,24 @@ if [ -z "${MEMORY}" ]; then |
| 110 | 110 | fi |
| 111 | 111 | export MEMORY="${MEMORY_PER_INSTANCE_IN_MB}m" |
| 112 | 112 | fi |
| 113 | -if [ -n ${CHARGEBEE_SITE} -a -n ${CHARGEBEE_APIKEY} ]; then |
|
| 113 | +if [ -n "${CHARGEBEE_SITE}" -a -n "${CHARGEBEE_APIKEY}" ]; then |
|
| 114 | 114 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Dchargebee.site=${CHARGEBEE_SITE} -Dchargebee.apikey=${CHARGEBEE_APIKEY}" |
| 115 | 115 | fi |
| 116 | -if [ -n ${MANAGE2SAIL_ACCESS_TOKEN} ]; then |
|
| 116 | +if [ -n "${MANAGE2SAIL_ACCESS_TOKEN}" ]; then |
|
| 117 | 117 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Dmanage2sail.accesstoken=${MANAGE2SAIL_ACCESS_TOKEN}" |
| 118 | 118 | fi |
| 119 | -if [ -n ${IGTIMI_CLIENT_ID} ]; then |
|
| 119 | +if [ -n "${IGTIMI_CLIENT_ID}" ]; then |
|
| 120 | 120 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Digtimi.client.id=${IGTIMI_CLIENT_ID}" |
| 121 | 121 | fi |
| 122 | -if [ -n ${IGTIMI_CLIENT_SECRET} ]; then |
|
| 122 | +if [ -n "${IGTIMI_CLIENT_SECRET}" ]; then |
|
| 123 | 123 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Digtimi.client.secret=${IGTIMI_CLIENT_SECRET}" |
| 124 | 124 | fi |
| 125 | -if [ -n ${GOOGLE_MAPS_AUTHENTICATION_PARAMS} ]; then |
|
| 125 | +if [ -n "${GOOGLE_MAPS_AUTHENTICATION_PARAMS}" ]; then |
|
| 126 | 126 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Dgoogle.maps.authenticationparams=${GOOGLE_MAPS_AUTHENTICATION_PARAMS}" |
| 127 | 127 | fi |
| 128 | -if [ -n ${WINDESTIMATION_BEARER_TOKEN} ]; then |
|
| 128 | +if [ -n "${WINDESTIMATION_BEARER_TOKEN}" ]; then |
|
| 129 | 129 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Dwindestimation.source.bearertoken=${WINDESTIMATION_BEARER_TOKEN}" |
| 130 | 130 | fi |
| 131 | -if [ -n ${POLAR_DATA_BEARER_TOKEN} ]; then |
|
| 131 | +if [ -n "${POLAR_DATA_BEARER_TOKEN}" ]; then |
|
| 132 | 132 | ADDITIONAL_JAVA_ARGS="${ADDITIONAL_JAVA_ARGS} -Dpolardata.source.bearertoken=${POLAR_DATA_BEARER_TOKEN}" |
| 133 | 133 | fi |
wiki/info/landscape/amazon-ec2.md
| ... | ... | @@ -31,7 +31,7 @@ Further ALBs may exist in addition to the default ALB and the NLB for ``sapsaili |
| 31 | 31 | ### Apache httpd, the central reverse proxy (Webserver) and disposable reverse proxies |
| 32 | 32 | |
| 33 | 33 | A key pillar of our architecture is the central reverse proxy, which handles traffic for the wiki, bugzilla, awstats, releases, p2, Git, jobs, static and is the target of the catch all rule in the Dynamic ALB. |
| 34 | -Any traffic to the Hudson build server subdomain *does not* go through the central webserver. Instead, it gets directed by route 53 to a `DDNSMapped` load balancer (which all route any port 80 traffic to 443), which has a rule pointing to a target group, that contains only the Hudson server. |
|
| 34 | +Any traffic to the Hudson build server subdomain *does not* go through the central webserver. Instead, it gets directed by route 53 to a `DDNSMapped` load balancer (which all route any port 80 traffic to 443), which has a rule pointing to a target group, that contains only the Hudson server. The setup procedure can be found below. |
|
| 35 | 35 | |
| 36 | 36 | To improve availability and reliability, we have a disposable environment type and AMI. The instances from this AMI are only for serving requests to the archive but are lightweight and can be quickly started and shutdown, using the landscape management console. |
| 37 | 37 | |
| ... | ... | @@ -39,7 +39,7 @@ The IPs for all reverse proxies will automatically be added to ALB target groups |
| 39 | 39 | and all the `DDNSMapped-x-HTTP` (in all the DDNSMapped servers). These are the target groups for the default rules and it ensures availability to the ARCHIVE especially. |
| 40 | 40 | Disposables instances are tagged with `DisposableProxy` to indicate it hosts no vital services. `ReverseProxy` also identifies any reverse proxies. The health check for the target groups would change to trigger a script which returns different error codes: healthy/200 if in the same AZ as the archive (or if the failover archive is in use), whilst unhealthy/503 if in different AZs. This will reduce cross-AZ, archive traffic costs, but maintain availability and load balancing. |
| 41 | 41 | |
| 42 | -For security groups of the central reverse proxy, we want Webserver, as well as Disposable Reverse Proxy. The disposables just have the latter. |
|
| 42 | +For security groups of the central reverse proxy, we want Webserver, as well as Reverse Proxy. The disposables just have the latter. |
|
| 43 | 43 | |
| 44 | 44 | There is hope to also deploy the httpd on already existing instances, which have free resources and a certain tag permitting this |
| 45 | 45 | co-deployment. |
| ... | ... | @@ -94,7 +94,7 @@ Use Status 172.31.19.129 internal-server-status |
| 94 | 94 | Use Status 127.0.0.1 internal-server-status |
| 95 | 95 | ``` |
| 96 | 96 | |
| 97 | -The second obviously requires maintenance as the internal IP changes, e.g., when instantiating a new Webserver copy by creating an image and restoring from the image. When upgrading / moving / copying the webserver you may try to be smart and copy the contents of ``/etc/ssh``, in particular the ``ssh_host_...`` files that contain the host keys. As you switch, users will then not have to upgrade their ``known_hosts`` file, and even internal accounts such as the Wiki account or the sailing accounts on other hosts that clone the git, or the build infrastructure won't be affected. |
|
| 97 | +The second obviously requires maintenance as the internal IP changes, e.g., when instantiating a new Webserver copy by creating an image and restoring from the image. This maintenance is managed by a service unit. When upgrading / moving / copying the webserver you may try to be smart and copy the contents of ``/etc/ssh``, in particular the ``ssh_host_...`` files that contain the host keys. As you switch, users will then not have to upgrade their ``known_hosts`` file, and even internal accounts such as the Wiki account or the sailing accounts on other hosts that clone the git, or the build infrastructure won't be affected. |
|
| 98 | 98 | |
| 99 | 99 | After (re-)booting the webserver, check that all services have come up before adding the instance to its respective target groups. For example, ensure that the Wiki "Gollum" service has been launched (see ``/home/wiki/serve.sh``). Furthermore, ensure that the Docker daemon is running and that it runs the Docker registry containers (``registry-ui-1`` and ``registry-registry-1``). See [here](https://wiki.sapsailing.com/wiki/info/landscape/docker-registry) for how this is set up. |
| 100 | 100 | |
| ... | ... | @@ -104,6 +104,23 @@ The following diagram explains the disposable reverse proxies role a little bett |
| 104 | 104 | |
| 105 | 105 | <img src="/wiki/images/orchestration/disposable-reverse-proxy-architecture-from-bug1873.png" /> |
| 106 | 106 | |
| 107 | +## Setting up the Central Reverse Proxy |
|
| 108 | + |
|
| 109 | +A lot of the above procedure has since been combined into a series of setup scripts found under `configuration/environments_scripts/central_reverse_proxy`. The script requires that you have added an SSH key with maximum access to your SSH authentication agent. This can be done with |
|
| 110 | +``` |
|
| 111 | +eval `ssh-agent` |
|
| 112 | +ssh-add |
|
| 113 | +``` |
|
| 114 | + |
|
| 115 | +You will also need the AWS CLI and must run `./awsmfalogon.sh` before running the first script below, to authenticate and gain a session token. Next, you should notify the community that internal services, such as Bugzilla will temporarily be down (make sure to notify them afterwards too, so they can continue their work). |
|
| 116 | + |
|
| 117 | +Using the landscape tab of the admin console, ensure there is a disposable in the same AZ as the archive (this ensures we can still route traffic to the archive). |
|
| 118 | + |
|
| 119 | +Next, remove the central reverse proxy from all target groups tagged with `allReverseProxies`. Then when at the path described above, launch `./setup-central-reverse-proxy.sh` and follow the necessary instructions. You |
|
| 120 | +will need to unmount and detach volumes from the old instance and then reattach and mount on the new webserver. |
|
| 121 | +Then `setup-central-reverse-proxy-part-2.sh` runs to finish any setup that requires these mounts. Finally, `target-group-tag-route53-nfs-elasticIP-setup.sh` |
|
| 122 | +will run to configure the target groups, tags and route 53. You will need to then remove the old reverse proxy from the target groups tagged with `CentralReverseProxy`. |
|
| 123 | + |
|
| 107 | 124 | ### DNS and Application Load Balancers (ALBs) |
| 108 | 125 | |
| 109 | 126 | We distinguish between DNS-mapped and non-DNS-mapped content. The basic services offered by the web server as listed above are DNS-mapped, with the DNS entries being CNAME records pointing to an ALB (DNSMapped-0-1286577811.eu-west-1.elb.amazonaws.com) which handles SSL offloading with the Amazon-managed certificate and forwards those requests to the web server. Furthermore, longer-running application replica sets can have a sub-domain declared in Route53's DNS, pointing to an ALB which then forwards to the public and master target groups for this replica set based on hostname, header fields and request method. A default redirect for the ``/`` path can also be defined, obsoleting previous Apache httpd reverse proxy redirects for non-archived ALB-mapped content. |
wiki/liveraces.md
| ... | ... | @@ -1,3 +0,0 @@ |
| 1 | -# Live races |
|
| 2 | - |
|
| 3 | -https://bugzilla.sapsailing.com/bugzilla/show_bug.cgi?id=3720 |
|
| ... | ... | \ No newline at end of file |
wiki/passwords.md
| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | ------BEGIN PGP MESSAGE----- |
|
| 2 | -Version: GnuPG v1.4.5 (GNU/Linux) |
|
| 3 | - |
|
| 4 | -jA0EAwMCpdXEg2lB49NgyaannCeG3Sc67wTHIxMbx8Jxxp9jc8zEYPEo9FmIgfda |
|
| 5 | -lDarXZBzMwtp0ZslrwV5NVdf/ozQDnKCxNq/016jl4zKrmCDT+hnnKKBtSvhBo0v |
|
| 6 | -yPteBdq+9zul/pphLdAx70L8VDmzS96K8W+MY5XKGNu+lWjoupp6Z6hZsHdq/bXb |
|
| 7 | -KKaN44y8Su8bAcuSQAxoCFeujjqEDJYdsmu1OhG+De06bGNTCDfx |
|
| 8 | -=uuLi |
|
| 9 | ------END PGP MESSAGE----- |
wiki/planning/domain-switchover.md
| ... | ... | @@ -13,9 +13,11 @@ |
| 13 | 13 | |
| 14 | 14 | - The ``target-group-tag-route53-nfs-elasticIP-setup.sh`` script used as the last stage of the setup process of a new central reverse proxy. It queries the Route 53 ID of the "sapsailing.com" hosted zone which would have to become a parameter or would need to be changed in the script. |
| 15 | 15 | |
| 16 | -- Mail sending and Amazon SES. |
|
| 16 | +- Mail sending and Amazon SES: we have Amazon WorkMail accounts, particularly for support@sapsailing.com and also a few other @sapsailing.com addresses, such as marcus.baur@sapsailing.com and jan.hamann@sapsailing.com. There are also technical accounts such as noreply@sapsailing.com. The mail address used for mail sent by the application as well as the mail server to use for sending, including its authentication parameters, can be set in the ``mail.properties`` file. The secrets for this currently come from ``root@sapsailing.com:secrets``. |
|
| 17 | 17 | |
| 18 | -- ``REPLICATE_MASTER_SERVLET_HOST`` is sometimes hardcoded. |
|
| 18 | +- ``sapsailing.com`` is hardcoded in some of the environments files currently found under ``https://releases.sapsailing.com/environments`` |
|
| 19 | + |
|
| 20 | +- The ``refreshInstance.sh`` script contains around eight references to ``releases.sapsailing.com``. Some of these are about where to download releases from and shall be replaced by logic that obtains those releases from Github. The others are concerned with environments, as referenced by the ``USE_ENVIRONMENT`` variable and are currently expected to be found under ``https://releases.sapsailing.com/environments`` which is just a static share on our central reverse proxy. If that is configured for a different domain then so has the refreshInstance.sh script. |
|
| 19 | 21 | |
| 20 | 22 | - Igtimi Authentication: the Igtimi REST API and authentication scheme uses a callback URL that we have configured on the igtimi.com web site, pointing to sapsailing.com. |
| 21 | 23 | |
| ... | ... | @@ -23,7 +25,7 @@ |
| 23 | 25 | |
| 24 | 26 | - A number of bash scripts have sapsailing.com hardcoded, especially the setup scripts and imageupgrade_functions.sh. Ideally we will need to factor out into a constant that all bash scripts can access. |
| 25 | 27 | |
| 26 | -- Releases and p2 respository references, where "releases.sapsailing.com" will be replaced over time by Github releases which the ``refreshInstance.sh`` script can then download. |
|
| 28 | +- Releases and p2 respository references, where "releases.sapsailing.com" will be replaced over time by Github releases which the ``refreshInstance.sh`` script can then download. The p2 repositories for the AWS SDK combined repository, as well as our base p2 repo that forms an important part of our target platform are currently expected to be found at ``https://p2.sapsailing.com/p2/aws-sdk`` and ``https://p2.sapsailing.com/p2/sailing``, respectively. Also, we have the latest SDBG installable hosted there under ``https://p2.sapsailing.com/p2/sdbg``. The scripts under ``java/com.sap.sailing.targetplatform/scripts`` and ``java/com.sap.sailing.feature.p2build/scripts`` as well as the target platform definitions under ``java/com.sap.sailing.targetplatform/definitions`` reference those p2 repositories. Should this set of p2 repositories be migrated to a different domain, the corresponding scripts and target platform definitions need to be adjusted, and the builds including the builds with an adjusted local target platform, need to be tested thoroughly. |
|
| 27 | 29 | |
| 28 | 30 | - MongoDB references and rabbit references, or any other private IP references in route53. Such references can in particular be found in the ``environments/`` folder on ``releases.sapsailing.com`` for the default parameterization of certain application process types, such as ``security-service-master`` or ``archive-server``. |
| 29 | 31 |