upgraded to TracAPI 3.0.7 which fixes bug 2474

This commit is contained in:
Axel Uhl
2014-11-20 11:39:01 +01:00
parent 5439757b13
commit 5c8237b4ce
297 changed files with 5902 additions and 1955 deletions
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: TracTrac Client module
Bundle-SymbolicName: com.tractrac.clientmodule
Bundle-Version: 3.0.6
Bundle-Version: 3.0.7
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: .,
lib/TracAPI.jar
+39
View File
@@ -16,6 +16,45 @@ It contains also some files:
- test.sh -> script that compiles the code in the src folder, creates the test.jar library and execute the code of the example.
- Manifest.txt -> manifest used to create the test.jar file
********************************************
************* TracAPI 3.0.7 ****************
********************************************
This is a final version. It fixes bugs in the implementation and it adds a some features.
These features add methods to the API, but they keep the backward compatibility.
This version provides a new JavaDoc version.
Release date: 19/11/2014
Build number: 9436
1) New features
- The IRace interface implements the method getStartTimeType that returns the type of start time. It is an enumerated
value with the values: Individual (if the competitors have an individual start time), RaceStart (if the race
has a race start time) and FirstControl (if the start of the race happens when the competitor passes for
the first control). The value by default is RaceStart. At this moment this value only can be managed at an event
level (in the event manager) but in a future we will add this functionality at a race level (Requested by
Jérome Soussens, 14/10/2014)
- The method IControlPoint.getPosition is deprecated. Use the IControlPointPositionListener.gotControlPointPosition()
to know the position of a control point (Reported by Jorge Piera, 28/10/2014)
- Adding the isNonCompeting() method to the ICompetitor interface. If a competitor is a non competing competitor
doesn't receive control passings attached to it. It only receives positions (Requested by Jérome Soussens, 15/10/2014 and
Axel Uhl, 22/10/2014)
2) Bugs
- It checks that the system of messages doesn't generates a BufferOverflow exception. We added a bug on the server
sending wrong strings to the clients and this error thrown an exception on the clients that killed one of threads.
Now the tracapi checks if there is an error encoding the strings and in this case, logs the exeption discarding
the message but the thread, continues running. Anyway the error has been fixed in the server side. (Reported by
Jorge Piera, 30/09/2014)
- If there is a control point without coordinates the lat,lon values are not included in the parameters file
and the library doesn't create the IControlPoint. Now, the library creates the IControlPoint and it returns
the values Double.MAX_VALUE for both the lat and the lon. This position is not sent by the
IControlPointPositionListener.gotControlPointPosition(). (Reported by Jakob Odum, 28/10/2014)
- There is a synchronization bug registering and sending messages using the General Message System. The list
that is used to register the listeners is not a synchronized list. This bug has been fixed (Reported by Axel Uhl, 19/11/2014,
http://bugzilla.sapsailing.com/bugzilla/show_bug.cgi?id=2474)
********************************************
************* TracAPI 3.0.6 ****************
********************************************
+38 -2
View File
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>All Classes</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
@@ -12,7 +12,16 @@
<div class="indexContainer">
<ul>
<li><a href="com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment" target="classFrame">AbstractAttachable</a></li>
<li><a href="com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">AbstractJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/AbstractModelTest.html" title="class in com.tractrac.model.lib.api" target="classFrame">AbstractModelTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/AbstractSubscriptionTest.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">AbstractSubscriptionTest</a></li>
<li><a href="com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment" target="classFrame">AttachmentsTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/CompetitorsEventTest.html" title="class in com.tractrac.subscription.lib.api.competitor" target="classFrame">CompetitorsEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ControlRouteTest.html" title="class in com.tractrac.model.lib.api.route" target="classFrame">ControlRouteTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ControlsEventTest.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">ControlsEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">CreateModelException</a></li>
<li><a href="com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">EventsFromClubsJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">EventsFromJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment" target="classFrame"><i>IAttachable</i></a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment" target="classFrame"><i>IAttachmentKey</i></a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachmentManager.html" title="interface in com.tractrac.model.lib.api.attachment" target="classFrame"><i>IAttachmentManager</i></a></li>
@@ -39,6 +48,8 @@
<li><a href="com/tractrac/model/lib/api/IIdentifiable.html" title="interface in com.tractrac.model.lib.api" target="classFrame"><i>IIdentifiable</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/ILiveDataEvent.html" title="interface in com.tractrac.subscription.lib.api.event" target="classFrame"><i>ILiveDataEvent</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/ILiveDataEvent.StatusType.html" title="enum in com.tractrac.subscription.lib.api.event" target="classFrame">ILiveDataEvent.StatusType</a></li>
<li><a href="com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api" target="classFrame"><i>ILocalDataserver</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/ILocalDataServerFactory.html" title="interface in com.tractrac.subscription.lib.api" target="classFrame"><i>ILocalDataServerFactory</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/IMessage.html" title="interface in com.tractrac.subscription.lib.api.event" target="classFrame"><i>IMessage</i></a></li>
<li><a href="com/tractrac/model/lib/api/data/IMessageData.html" title="interface in com.tractrac.model.lib.api.data" target="classFrame"><i>IMessageData</i></a></li>
<li><a href="com/tractrac/model/lib/api/metadata/IMetadata.html" title="interface in com.tractrac.model.lib.api.metadata" target="classFrame"><i>IMetadata</i></a></li>
@@ -76,11 +87,36 @@
<li><a href="com/tractrac/subscription/lib/api/ISubscriberListener.html" title="interface in com.tractrac.subscription.lib.api" target="classFrame"><i>ISubscriberListener</i></a></li>
<li><a href="com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event" target="classFrame"><i>ITeam</i></a></li>
<li><a href="com/tractrac/model/lib/api/data/ITimeData.html" title="interface in com.tractrac.model.lib.api.data" target="classFrame"><i>ITimeData</i></a></li>
<li><a href="com/tractrac/model/lib/api/metadata/MetadataTest.html" title="class in com.tractrac.model.lib.api.metadata" target="classFrame">MetadataTest</a></li>
<li><a href="com/tractrac/model/lib/api/ModelLocator.html" title="class in com.tractrac.model.lib.api" target="classFrame">ModelLocator</a></li>
<li><a href="com/tractrac/model/lib/api/ModelLocatorTest.html" title="class in com.tractrac.model.lib.api" target="classFrame">ModelLocatorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/PositionEventTest.html" title="class in com.tractrac.subscription.lib.api.competitor" target="classFrame">PositionEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RaceCompetitorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RaceCompetitorTest.html" title="class in com.tractrac.subscription.lib.api.race" target="classFrame">RaceCompetitorTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RaceLoadingException</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RaceSerieTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RacesEventTest.html" title="class in com.tractrac.subscription.lib.api.race" target="classFrame">RacesEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RacesFromJSONTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RacesListener.html" title="class in com.tractrac.subscription.lib.api.race" target="classFrame">RacesListener</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event" target="classFrame">RaceStatusType</a></li>
<li><a href="com/tractrac/subscription/lib/api/ReadHDRaceTest.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">ReadHDRaceTest</a></li>
<li><a href="com/tractrac/model/lib/api/ReadParameterFileTest.html" title="class in com.tractrac.model.lib.api" target="classFrame">ReadParameterFileTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ReadRouteTest.html" title="class in com.tractrac.model.lib.api.route" target="classFrame">ReadRouteTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ReadTextPathRouteTests.html" title="class in com.tractrac.model.lib.api.route" target="classFrame">ReadTextPathRouteTests</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ReconnectAddingControlsTest.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">ReconnectAddingControlsTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/ReconnectAddingEntriesTest.html" title="class in com.tractrac.subscription.lib.api.competitor" target="classFrame">ReconnectAddingEntriesTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ReconnectWithStaticControlsTest.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">ReconnectWithStaticControlsTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">SameEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event" target="classFrame">StartTimeType</a></li>
<li><a href="com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">StartTimeTypeTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticControlInSecondRace.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">StaticControlInSecondRace</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticControlTest.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">StaticControlTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/StaticRaceStartStopTimesChangeTest.html" title="class in com.tractrac.subscription.lib.api.race" target="classFrame">StaticRaceStartStopTimesChangeTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticRoutesChangesTest.html" title="class in com.tractrac.subscription.lib.api.control" target="classFrame">StaticRoutesChangesTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriberInitializationException.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">SubscriberInitializationException</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionLocator.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">SubscriptionLocator</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionLocatorTest.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">SubscriptionLocatorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionTestLocator.html" title="class in com.tractrac.subscription.lib.api" target="classFrame">SubscriptionTestLocator</a></li>
</ul>
</div>
</body>
+38 -2
View File
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>All Classes</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
@@ -12,7 +12,16 @@
<div class="indexContainer">
<ul>
<li><a href="com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment">AbstractAttachable</a></li>
<li><a href="com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event">AbstractJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/AbstractModelTest.html" title="class in com.tractrac.model.lib.api">AbstractModelTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/AbstractSubscriptionTest.html" title="class in com.tractrac.subscription.lib.api">AbstractSubscriptionTest</a></li>
<li><a href="com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment">AttachmentsTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/CompetitorsEventTest.html" title="class in com.tractrac.subscription.lib.api.competitor">CompetitorsEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ControlRouteTest.html" title="class in com.tractrac.model.lib.api.route">ControlRouteTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ControlsEventTest.html" title="class in com.tractrac.subscription.lib.api.control">ControlsEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></li>
<li><a href="com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event">EventsFromClubsJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event">EventsFromJSONTest</a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment"><i>IAttachable</i></a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment"><i>IAttachmentKey</i></a></li>
<li><a href="com/tractrac/model/lib/api/attachment/IAttachmentManager.html" title="interface in com.tractrac.model.lib.api.attachment"><i>IAttachmentManager</i></a></li>
@@ -39,6 +48,8 @@
<li><a href="com/tractrac/model/lib/api/IIdentifiable.html" title="interface in com.tractrac.model.lib.api"><i>IIdentifiable</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/ILiveDataEvent.html" title="interface in com.tractrac.subscription.lib.api.event"><i>ILiveDataEvent</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/ILiveDataEvent.StatusType.html" title="enum in com.tractrac.subscription.lib.api.event">ILiveDataEvent.StatusType</a></li>
<li><a href="com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api"><i>ILocalDataserver</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/ILocalDataServerFactory.html" title="interface in com.tractrac.subscription.lib.api"><i>ILocalDataServerFactory</i></a></li>
<li><a href="com/tractrac/subscription/lib/api/event/IMessage.html" title="interface in com.tractrac.subscription.lib.api.event"><i>IMessage</i></a></li>
<li><a href="com/tractrac/model/lib/api/data/IMessageData.html" title="interface in com.tractrac.model.lib.api.data"><i>IMessageData</i></a></li>
<li><a href="com/tractrac/model/lib/api/metadata/IMetadata.html" title="interface in com.tractrac.model.lib.api.metadata"><i>IMetadata</i></a></li>
@@ -76,11 +87,36 @@
<li><a href="com/tractrac/subscription/lib/api/ISubscriberListener.html" title="interface in com.tractrac.subscription.lib.api"><i>ISubscriberListener</i></a></li>
<li><a href="com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event"><i>ITeam</i></a></li>
<li><a href="com/tractrac/model/lib/api/data/ITimeData.html" title="interface in com.tractrac.model.lib.api.data"><i>ITimeData</i></a></li>
<li><a href="com/tractrac/model/lib/api/metadata/MetadataTest.html" title="class in com.tractrac.model.lib.api.metadata">MetadataTest</a></li>
<li><a href="com/tractrac/model/lib/api/ModelLocator.html" title="class in com.tractrac.model.lib.api">ModelLocator</a></li>
<li><a href="com/tractrac/model/lib/api/ModelLocatorTest.html" title="class in com.tractrac.model.lib.api">ModelLocatorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/PositionEventTest.html" title="class in com.tractrac.subscription.lib.api.competitor">PositionEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event">RaceCompetitorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RaceCompetitorTest.html" title="class in com.tractrac.subscription.lib.api.race">RaceCompetitorTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event">RaceLoadingException</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event">RaceSerieTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RacesEventTest.html" title="class in com.tractrac.subscription.lib.api.race">RacesEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event">RacesFromJSONTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/RacesListener.html" title="class in com.tractrac.subscription.lib.api.race">RacesListener</a></li>
<li><a href="com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a></li>
<li><a href="com/tractrac/subscription/lib/api/ReadHDRaceTest.html" title="class in com.tractrac.subscription.lib.api">ReadHDRaceTest</a></li>
<li><a href="com/tractrac/model/lib/api/ReadParameterFileTest.html" title="class in com.tractrac.model.lib.api">ReadParameterFileTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ReadRouteTest.html" title="class in com.tractrac.model.lib.api.route">ReadRouteTest</a></li>
<li><a href="com/tractrac/model/lib/api/route/ReadTextPathRouteTests.html" title="class in com.tractrac.model.lib.api.route">ReadTextPathRouteTests</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ReconnectAddingControlsTest.html" title="class in com.tractrac.subscription.lib.api.control">ReconnectAddingControlsTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/competitor/ReconnectAddingEntriesTest.html" title="class in com.tractrac.subscription.lib.api.competitor">ReconnectAddingEntriesTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/ReconnectWithStaticControlsTest.html" title="class in com.tractrac.subscription.lib.api.control">ReconnectWithStaticControlsTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event">SameEventTest</a></li>
<li><a href="com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></li>
<li><a href="com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event">StartTimeTypeTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticControlInSecondRace.html" title="class in com.tractrac.subscription.lib.api.control">StaticControlInSecondRace</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticControlTest.html" title="class in com.tractrac.subscription.lib.api.control">StaticControlTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/race/StaticRaceStartStopTimesChangeTest.html" title="class in com.tractrac.subscription.lib.api.race">StaticRaceStartStopTimesChangeTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/control/StaticRoutesChangesTest.html" title="class in com.tractrac.subscription.lib.api.control">StaticRoutesChangesTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriberInitializationException.html" title="class in com.tractrac.subscription.lib.api">SubscriberInitializationException</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionLocator.html" title="class in com.tractrac.subscription.lib.api">SubscriptionLocator</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionLocatorTest.html" title="class in com.tractrac.subscription.lib.api">SubscriptionLocatorTest</a></li>
<li><a href="com/tractrac/subscription/lib/api/SubscriptionTestLocator.html" title="class in com.tractrac.subscription.lib.api">SubscriptionTestLocator</a></li>
</ul>
</div>
</body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>AbstractModelTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IIdentifiable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,7 +36,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../com/tractrac/model/lib/api/AbstractModelTest.html" title="class in com.tractrac.model.lib.api"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
@@ -184,7 +184,7 @@ extends <a href="../../../../../com/tractrac/model/lib/api/attachment/IAttachabl
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../com/tractrac/model/lib/api/AbstractModelTest.html" title="class in com.tractrac.model.lib.api"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
+2 -2
View File
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>INamed</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>ModelLocator</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -37,7 +37,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../com/tractrac/model/lib/api/ModelLocatorTest.html" title="class in com.tractrac.model.lib.api"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/tractrac/model/lib/api/ModelLocator.html" target="_top">Frames</a></li>
@@ -408,7 +408,7 @@ extends java.lang.Object</pre>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../com/tractrac/model/lib/api/ModelLocatorTest.html" title="class in com.tractrac.model.lib.api"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/tractrac/model/lib/api/ModelLocator.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>ModelLocatorTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>ReadParameterFileTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -87,31 +87,17 @@
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>junit.framework.Assert</li>
<li>
<ul class="inheritance">
<li>junit.framework.TestCase</li>
<li>
<ul class="inheritance">
<li>com.tractrac.model.lib.api.ReadParameterFileTest</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>junit.framework.Test</dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="strong">ReadParameterFileTest</span>
extends junit.framework.TestCase</pre>
extends java.lang.Object</pre>
<div class="block">Class that tests reading in a Text parameter file and setting up an event</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd><a href="mailto:jesper@tractrac.dk">Jesper Grooss</a></dd></dl>
@@ -151,39 +137,52 @@ extends junit.framework.TestCase</pre>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testEventData()">testEventData</a></strong>()</code>&nbsp;</td>
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#readParametersFile()">readParametersFile</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataForCourse()">testMetadataForCourse</a></strong>()</code>&nbsp;</td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testClasses()">testClasses</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataFroControl()">testMetadataFroControl</a></strong>()</code>&nbsp;</td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testCompetitors()">testCompetitors</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRaceData()">testRaceData</a></strong>()</code>&nbsp;</td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testEvent()">testEvent</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataForCourse()">testMetadataForCourse</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataFromControl()">testMetadataFromControl</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRace()">testRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRaceCompetitor()">testRaceCompetitor</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRouteData()">testRouteData</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testTeams()">testTeams</a></strong>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_junit.framework.TestCase">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;junit.framework.TestCase</h3>
<code>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, fail, fail, failNotEquals, failNotSame, failSame, format, getName, run, run, runBare, setName, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
@@ -216,13 +215,13 @@ extends junit.framework.TestCase</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="testEventData()">
<a name="readParametersFile()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testEventData</h4>
<pre>public&nbsp;void&nbsp;testEventData()
<h4>readParametersFile</h4>
<pre>public static&nbsp;void&nbsp;readParametersFile()
throws java.net.URISyntaxException,
<a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
@@ -230,13 +229,63 @@ extends junit.framework.TestCase</pre>
<dd><code><a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd></dl>
</li>
</ul>
<a name="testRaceData()">
<a name="testEvent()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testRaceData</h4>
<pre>public&nbsp;void&nbsp;testRaceData()
<h4>testEvent</h4>
<pre>public&nbsp;void&nbsp;testEvent()
throws java.net.URISyntaxException,
<a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd></dl>
</li>
</ul>
<a name="testClasses()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testClasses</h4>
<pre>public&nbsp;void&nbsp;testClasses()</pre>
</li>
</ul>
<a name="testTeams()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testTeams</h4>
<pre>public&nbsp;void&nbsp;testTeams()</pre>
</li>
</ul>
<a name="testCompetitors()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testCompetitors</h4>
<pre>public&nbsp;void&nbsp;testCompetitors()</pre>
</li>
</ul>
<a name="testRaceCompetitor()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testRaceCompetitor</h4>
<pre>public&nbsp;void&nbsp;testRaceCompetitor()</pre>
</li>
</ul>
<a name="testRace()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testRace</h4>
<pre>public&nbsp;void&nbsp;testRace()
throws java.net.URISyntaxException,
<a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
@@ -272,13 +321,13 @@ extends junit.framework.TestCase</pre>
<dd><code><a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd></dl>
</li>
</ul>
<a name="testMetadataFroControl()">
<a name="testMetadataFromControl()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>testMetadataFroControl</h4>
<pre>public&nbsp;void&nbsp;testMetadataFroControl()
<h4>testMetadataFromControl</h4>
<pre>public&nbsp;void&nbsp;testMetadataFromControl()
throws java.net.URISyntaxException,
<a href="../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>AbstractAttachable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -37,7 +37,7 @@
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/attachment/AbstractAttachable.html" target="_top">Frames</a></li>
@@ -254,7 +254,7 @@ implements <a href="../../../../../../com/tractrac/model/lib/api/attachment/IAtt
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/attachment/AbstractAttachable.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:20 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>AttachmentsTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IAttachable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,7 +36,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
@@ -207,7 +207,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IAttachmentKey</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IAttachmentManager</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.attachment.AbstractAttachable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -77,7 +77,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.attachment.AttachmentsTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -140,6 +140,23 @@
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachable</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addAttachment(com.tractrac.model.lib.api.attachment.IAttachable, com.tractrac.model.lib.api.attachment.IAttachmentKey, java.lang.Object)">addAttachment</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachable</a>&nbsp;attachable,
<a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachmentKey</a>&nbsp;attachmentKey,
java.lang.Object&nbsp;object)</code>
<div class="block">Add an attachment to an attachable object</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.attachment">
<!-- -->
@@ -333,7 +350,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentKey</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,6 +76,13 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.attachment">com.tractrac.model.lib.api.attachment</a></td>
<td class="colLast">
<div class="block">
@@ -87,6 +94,28 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachmentKey</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachmentKey</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addAttachment(com.tractrac.model.lib.api.attachment.IAttachable, com.tractrac.model.lib.api.attachment.IAttachmentKey, java.lang.Object)">addAttachment</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachable</a>&nbsp;attachable,
<a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachmentKey</a>&nbsp;attachmentKey,
java.lang.Object&nbsp;object)</code>
<div class="block">Add an attachment to an attachable object</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.attachment">
<!-- -->
</a>
@@ -171,7 +200,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentKey.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.attachment.IAttachmentManager</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentManager.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -137,7 +137,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/attachment/IAttachmentManager.html" title="interface in com.tractrac.model.lib.api.attachment">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.attachment</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -19,6 +19,7 @@
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment" target="classFrame">AbstractAttachable</a></li>
<li><a href="AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment" target="classFrame">AttachmentsTest</a></li>
</ul>
</div>
</body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.attachment</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -118,6 +118,13 @@
<div class="block">Abstract implementation for the <a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment"><code>IAttachable</code></a> interface.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment">AttachmentsTest</a></td>
<td class="colLast">
<div class="block">
This test checks the attachments.</div>
</td>
</tr>
</tbody>
</table>
</li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.attachment Class Hierarchy</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -75,6 +75,15 @@
<li type="circle">java.lang.Object
<ul>
<li type="circle">com.tractrac.model.lib.api.attachment.<a href="../../../../../../com/tractrac/model/lib/api/attachment/AbstractAttachable.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">AbstractAttachable</span></a> (implements com.tractrac.model.lib.api.attachment.<a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment">IAttachable</a>)</li>
<li type="circle">junit.framework.Assert
<ul>
<li type="circle">junit.framework.TestCase (implements junit.framework.Test)
<ul>
<li type="circle">com.tractrac.model.lib.api.attachment.<a href="../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html" title="class in com.tractrac.model.lib.api.attachment"><span class="strong">AttachmentsTest</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Package com.tractrac.model.lib.api.attachment</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -129,6 +129,12 @@
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/attachment/class-use/IAttachmentKey.html#com.tractrac.model.lib.api">IAttachmentKey</a>
<div class="block">
An attachment key is used as a key to save a new attachment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/attachment/class-use/IAttachmentManager.html#com.tractrac.model.lib.api">IAttachmentManager</a>
<div class="block">Manager interface for creation of IAttachementKey for use with the
<a href="../../../../../../com/tractrac/model/lib/api/attachment/IAttachable.html" title="interface in com.tractrac.model.lib.api.attachment"><code>IAttachable</code></a> interface.</div>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.AbstractModelTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.IIdentifiable</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/IIdentifiable.html" title="interface in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -241,7 +241,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/IIdentifiable.html" title="interface in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.INamed</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -214,7 +214,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title="interface in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.ModelLocator</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/ModelLocator.html" title="class in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -77,7 +77,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/ModelLocator.html" title="class in com.tractrac.model.lib.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.ModelLocatorTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.ReadParameterFileTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IControlPassing</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IControlPassings</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IMessageData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IPosition</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IPositionFactory</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IPositionOffset</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IPositionSnapped</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IStartStopData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>ITimeData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassing</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IControlPassings</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IMessageData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IPosition</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -208,7 +208,9 @@
<tr class="altColor">
<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>
<td class="colLast"><span class="strong">IControlPoint.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/route/IControlPoint.html#getPosition()">getPosition</a></strong>()</code>
<div class="block">Gets the position of a control point.</div>
<div class="block"><strong>Deprecated.</strong>&nbsp;
<div class="block"><i>the position for a control has to be retrieved using the subscription library</i></div>
</div>
</td>
</tr>
</tbody>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionFactory</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionOffset</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IPositionSnapped</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.IStartStopData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.data.ITimeData</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.data</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.data</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.data Class Hierarchy</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Package com.tractrac.model.lib.api.data</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:19 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:13 UTC 2014 -->
<title>AbstractJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:13 UTC 2014 -->
<title>CreateModelException</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,8 +36,8 @@
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/CreateModelException.html" target="_top">Frames</a></li>
@@ -239,8 +239,8 @@ extends java.lang.Exception</pre>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/CreateModelException.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:19 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:13 UTC 2014 -->
<title>EventsFromClubsJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:19 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>EventsFromJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>ICompetitor</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,7 +36,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
@@ -207,6 +207,13 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
<div class="block">Returns if a competitor is considered favourite.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html#isNonCompeting()">isNonCompeting</a></strong>()</code>
<div class="block">Gets if the competitor can compete in the races or if it is a non competing
competitor</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.tractrac.model.lib.api.INamed">
@@ -407,7 +414,7 @@ java.lang.String&nbsp;getFirstName()</pre>
<a name="isFavourite()">
<!-- -->
</a>
<ul class="blockListLast">
<ul class="blockList">
<li class="blockList">
<h4>isFavourite</h4>
<pre>boolean&nbsp;isFavourite()</pre>
@@ -415,6 +422,18 @@ java.lang.String&nbsp;getFirstName()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>If a competitor is favourite.</dd></dl>
</li>
</ul>
<a name="isNonCompeting()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isNonCompeting</h4>
<pre>boolean&nbsp;isNonCompeting()</pre>
<div class="block">Gets if the competitor can compete in the races or if it is a non competing
competitor</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>true</code> if is a non competing competitor</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
@@ -441,7 +460,7 @@ java.lang.String&nbsp;getFirstName()</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>ICompetitorClass</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IEvent</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IEventFactory</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IRace</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -219,6 +219,13 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getStartTimeType()">getStartTimeType</a></strong>()</code>
<div class="block">
Gets the start time type of the race.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getStatus()">getStatus</a></strong>()</code>
<div class="block"><strong>Deprecated.</strong>&nbsp;
@@ -226,27 +233,27 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>java.net.URI</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getStoredURI()">getStoredURI</a></strong>()</code>
<div class="block">Gets the stored URI of this race.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getTrackingEndTime()">getTrackingEndTime</a></strong>()</code>
<div class="block">
End of tracking time when the trackers have stopped to send positions.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getTrackingStartTime()">getTrackingStartTime</a></strong>()</code>
<div class="block">Start of tracking time can be set before start of race time in case it is
interesting to follow what happens up til the start time of the race.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#getVisibility()">getVisibility</a></strong>()</code>
<div class="block">Gets the visibility of the race that can be:
@@ -258,14 +265,14 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#isInitialized()">isInitialized</a></strong>()</code>
<div class="block">
This value means if the race has been initialized.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/IRace.html#reloadFromServer()">reloadFromServer</a></strong>()</code>
<div class="block">This method is used to reload a race from the server using the parameters
@@ -642,7 +649,7 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
<a name="isInitialized()">
<!-- -->
</a>
<ul class="blockListLast">
<ul class="blockList">
<li class="blockList">
<h4>isInitialized</h4>
<pre>boolean&nbsp;isInitialized()</pre>
@@ -655,6 +662,24 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
<dl><dt><span class="strong">Returns:</span></dt><dd>if the race has been initialized</dd></dl>
</li>
</ul>
<a name="getStartTimeType()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getStartTimeType</h4>
<pre><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&nbsp;getStartTimeType()</pre>
<div class="block"><p>
Gets the start time type of the race. At this moment this value is managed
only at an event level but in a future this functionality will be added at
a race level.
<p>
<p>
If the attribute is not defined, it always returns <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#RaceStart"><code>StartTimeType.RaceStart</code></a>
</p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the start time type</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IRaceCompetitor</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>IRaceSerie</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>ITeam</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -37,7 +37,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/IRaceSerie.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/ITeam.html" target="_top">Frames</a></li>
@@ -267,7 +267,7 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/INamed.html" title
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/IRaceSerie.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/ITeam.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:19 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>RaceCompetitorTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>RaceLoadingException</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,8 +36,8 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/RaceLoadingException.html" target="_top">Frames</a></li>
@@ -210,8 +210,8 @@ extends java.lang.Exception</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/RaceLoadingException.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:19 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>RaceSerieTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:04 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>RaceStatusType</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -36,8 +36,8 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/RaceStatusType.html" target="_top">Frames</a></li>
@@ -316,8 +316,8 @@ with the specified name</dd>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/RaceStatusType.html" target="_top">Frames</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:20 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>RacesFromJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:20 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>SameEventTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -37,7 +37,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/SameEventTest.html" target="_top">Frames</a></li>
@@ -250,7 +250,7 @@ extends <a href="../../../../../../com/tractrac/model/lib/api/event/AbstractJSON
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/SameEventTest.html" target="_top">Frames</a></li>
@@ -0,0 +1,363 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>StartTimeType</title>
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="StartTimeType";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StartTimeType.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/StartTimeType.html" target="_top">Frames</a></li>
<li><a href="StartTimeType.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum_constant_summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum_constant_detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.tractrac.model.lib.api.event</div>
<h2 title="Enum StartTimeType" class="title">Enum StartTimeType</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&gt;</li>
<li>
<ul class="inheritance">
<li>com.tractrac.model.lib.api.event.StartTimeType</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&gt;</dd>
</dl>
<hr>
<br>
<pre>public enum <span class="strong">StartTimeType</span>
extends java.lang.Enum&lt;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&gt;</pre>
<div class="block">Type of start time to use.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd><a href="mailto:jesper@tractrac.dk">Jesper Grooss</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum_constant_summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#FirstControl">FirstControl</a></strong></code>
<div class="block">Use time of first control rounding</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#Individual">Individual</a></strong></code>
<div class="block">Use individual start time, stored in the <a href="../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event"><code>IRaceCompetitor</code></a> object.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#RaceStart">RaceStart</a></strong></code>
<div class="block">Use race start time</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#getStartTime(java.lang.String)">getStartTime</a></strong>(java.lang.String&nbsp;startTimeType)</code>
<div class="block">Gets the start time type from a string</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#values()">values</a></strong>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum_constant_detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="Individual">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Individual</h4>
<pre>public static final&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a> Individual</pre>
<div class="block">Use individual start time, stored in the <a href="../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event"><code>IRaceCompetitor</code></a> object.</div>
</li>
</ul>
<a name="RaceStart">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RaceStart</h4>
<pre>public static final&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a> RaceStart</pre>
<div class="block">Use race start time</div>
</li>
</ul>
<a name="FirstControl">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>FirstControl</h4>
<pre>public static final&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a> FirstControl</pre>
<div class="block">Use time of first control rounding</div>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (StartTimeType c : StartTimeType.values())
&nbsp; System.out.println(c);
</pre></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in
the order they are declared</dd></dl>
</li>
</ul>
<a name="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the enum constant with the specified name</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant
with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd></dl>
</li>
</ul>
<a name="getStartTime(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getStartTime</h4>
<pre>public static&nbsp;<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>&nbsp;getStartTime(java.lang.String&nbsp;startTimeType)</pre>
<div class="block">Gets the start time type from a string</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>startTimeType</code> - the string that contains the start time type</dd>
<dt><span class="strong">Returns:</span></dt><dd>the start time type or race start time of it doesn't exist</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StartTimeType.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/StartTimeType.html" target="_top">Frames</a></li>
<li><a href="StartTimeType.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum_constant_summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum_constant_detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
@@ -0,0 +1,524 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:14 UTC 2014 -->
<title>StartTimeTypeTest</title>
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="StartTimeTypeTest";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StartTimeTypeTest.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/StartTimeTypeTest.html" target="_top">Frames</a></li>
<li><a href="StartTimeTypeTest.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.tractrac.model.lib.api.event</div>
<h2 title="Class StartTimeTypeTest" class="title">Class StartTimeTypeTest</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>junit.framework.Assert</li>
<li>
<ul class="inheritance">
<li>junit.framework.TestCase</li>
<li>
<ul class="inheritance">
<li>com.tractrac.model.lib.api.event.StartTimeTypeTest</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>junit.framework.Test</dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="strong">StartTimeTypeTest</span>
extends junit.framework.TestCase</pre>
<div class="block">Class used to test the <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><code>StartTimeType</code></a> enumerate</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd><a href="mailto:jorge@tractrac.dk">Jorge Piera Llodr&aacute</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#StartTimeTypeTest()">StartTimeTypeTest</a></strong>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#setUp()">setUp</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIdividualAndStartTimeTypeNull()">testStartTypeIdividualAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeFirstMark()">testStartTypeIndividualAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeIndividual()">testStartTypeIndividualAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeRace()">testStartTypeIndividualAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeFirstMark()">testStartTypeMassStartAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeIndividual()">testStartTypeMassStartAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeNull()">testStartTypeMassStartAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeRace()">testStartTypeMassStartAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeFirstMark()">testStartTypeNullAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeIndividual()">testStartTypeNullAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeNull()">testStartTypeNullAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeRace()">testStartTypeNullAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_junit.framework.TestCase">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;junit.framework.TestCase</h3>
<code>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, fail, fail, failNotEquals, failNotSame, failSame, format, getName, run, run, runBare, setName, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="StartTimeTypeTest()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>StartTimeTypeTest</h4>
<pre>public&nbsp;StartTimeTypeTest()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setUp()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUp</h4>
<pre>public&nbsp;void&nbsp;setUp()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>setUp</code>&nbsp;in class&nbsp;<code>junit.framework.TestCase</code></dd>
</dl>
</li>
</ul>
<a name="testStartTypeNullAndStartTimeTypeNull()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeNullAndStartTimeTypeNull</h4>
<pre>public&nbsp;void&nbsp;testStartTypeNullAndStartTimeTypeNull()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeMassStartAndStartTimeTypeNull()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeMassStartAndStartTimeTypeNull</h4>
<pre>public&nbsp;void&nbsp;testStartTypeMassStartAndStartTimeTypeNull()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeIdividualAndStartTimeTypeNull()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeIdividualAndStartTimeTypeNull</h4>
<pre>public&nbsp;void&nbsp;testStartTypeIdividualAndStartTimeTypeNull()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeNullAndStartTimeTypeIndividual()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeNullAndStartTimeTypeIndividual</h4>
<pre>public&nbsp;void&nbsp;testStartTypeNullAndStartTimeTypeIndividual()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeNullAndStartTimeTypeFirstMark()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeNullAndStartTimeTypeFirstMark</h4>
<pre>public&nbsp;void&nbsp;testStartTypeNullAndStartTimeTypeFirstMark()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeNullAndStartTimeTypeRace()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeNullAndStartTimeTypeRace</h4>
<pre>public&nbsp;void&nbsp;testStartTypeNullAndStartTimeTypeRace()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeMassStartAndStartTimeTypeIndividual()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeMassStartAndStartTimeTypeIndividual</h4>
<pre>public&nbsp;void&nbsp;testStartTypeMassStartAndStartTimeTypeIndividual()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeMassStartAndStartTimeTypeFirstMark()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeMassStartAndStartTimeTypeFirstMark</h4>
<pre>public&nbsp;void&nbsp;testStartTypeMassStartAndStartTimeTypeFirstMark()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeMassStartAndStartTimeTypeRace()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeMassStartAndStartTimeTypeRace</h4>
<pre>public&nbsp;void&nbsp;testStartTypeMassStartAndStartTimeTypeRace()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeIndividualAndStartTimeTypeIndividual()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeIndividualAndStartTimeTypeIndividual</h4>
<pre>public&nbsp;void&nbsp;testStartTypeIndividualAndStartTimeTypeIndividual()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeIndividualAndStartTimeTypeFirstMark()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>testStartTypeIndividualAndStartTimeTypeFirstMark</h4>
<pre>public&nbsp;void&nbsp;testStartTypeIndividualAndStartTimeTypeFirstMark()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="testStartTypeIndividualAndStartTimeTypeRace()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>testStartTypeIndividualAndStartTimeTypeRace</h4>
<pre>public&nbsp;void&nbsp;testStartTypeIndividualAndStartTimeTypeRace()
throws java.net.URISyntaxException,
<a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a>,
java.io.IOException</pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.URISyntaxException</code></dd>
<dd><code><a href="../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StartTimeTypeTest.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/event/StartTimeTypeTest.html" target="_top">Frames</a></li>
<li><a href="StartTimeTypeTest.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.AbstractJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.CreateModelException</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,17 +76,122 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.attachment">com.tractrac.model.lib.api.attachment</a></td>
<td class="colLast">
<div class="block">
Contains the functionality to attach an object to other object.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.metadata">com.tractrac.model.lib.api.metadata</a></td>
<td class="colLast">
<div class="block">
The metadata functionality</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.route">com.tractrac.model.lib.api.route</a></td>
<td class="colLast">
<div class="block">
The route configuration: controls, paths and routes</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.competitor">com.tractrac.subscription.lib.api.competitor</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with competitors and positions</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.control">com.tractrac.subscription.lib.api.control</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with the controls and control passings</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#readParametersFile()">readParametersFile</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testEvent()">testEvent</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataForCourse()">testMetadataForCourse</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testMetadataFromControl()">testMetadataFromControl</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRace()">testRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadParameterFileTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/ReadParameterFileTest.html#testRouteData()">testRouteData</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.attachment">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/model/lib/api/attachment/package-summary.html">com.tractrac.model.lib.api.attachment</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/attachment/package-summary.html">com.tractrac.model.lib.api.attachment</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">AttachmentsTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/attachment/AttachmentsTest.html#setUp()">setUp</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
@@ -150,6 +255,184 @@
<div class="block">Load the races using the JSON for the races</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RacesFromJSONTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/RacesFromJSONTest.html#testLoadRace()">testLoadRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RaceCompetitorTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html#testMetadata()">testMetadata</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">EventsFromJSONTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/EventsFromJSONTest.html#testParseEventsFile()">testParseEventsFile</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">EventsFromClubsJSONTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html#testParseEventsFile()">testParseEventsFile</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RaceSerieTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceSerieTest.html#testReadRaceSerie()">testReadRaceSerie</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RaceCompetitorTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html#testRouteNotNull()">testRouteNotNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">SameEventTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html#testSameEvent()">testSameEvent</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIdividualAndStartTimeTypeNull()">testStartTypeIdividualAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeFirstMark()">testStartTypeIndividualAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeIndividual()">testStartTypeIndividualAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeIndividualAndStartTimeTypeRace()">testStartTypeIndividualAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeFirstMark()">testStartTypeMassStartAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeIndividual()">testStartTypeMassStartAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeNull()">testStartTypeMassStartAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeMassStartAndStartTimeTypeRace()">testStartTypeMassStartAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeFirstMark()">testStartTypeNullAndStartTimeTypeFirstMark</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeIndividual()">testStartTypeNullAndStartTimeTypeIndividual</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeNull()">testStartTypeNullAndStartTimeTypeNull</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StartTimeTypeTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html#testStartTypeNullAndStartTimeTypeRace()">testStartTypeNullAndStartTimeTypeRace</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.metadata">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/model/lib/api/metadata/package-summary.html">com.tractrac.model.lib.api.metadata</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/metadata/package-summary.html">com.tractrac.model.lib.api.metadata</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">MetadataTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/metadata/MetadataTest.html#setUp()">setUp</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.route">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/model/lib/api/route/package-summary.html">com.tractrac.model.lib.api.route</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/route/package-summary.html">com.tractrac.model.lib.api.route</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ControlRouteTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/route/ControlRouteTest.html#setUp()">setUp</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadRouteTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/route/ReadRouteTest.html#testRouteName()">testRouteName</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReadHDRaceTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ReadHDRaceTest.html#testEventData()">testEventData</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api.competitor">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/competitor/package-summary.html">com.tractrac.subscription.lib.api.competitor</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/competitor/package-summary.html">com.tractrac.subscription.lib.api.competitor</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReconnectAddingEntriesTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/competitor/ReconnectAddingEntriesTest.html#testRemoveAndAddCompetitor()">testRemoveAndAddCompetitor</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api.control">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/control/package-summary.html">com.tractrac.subscription.lib.api.control</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/control/package-summary.html">com.tractrac.subscription.lib.api.control</a> that throw <a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">CreateModelException</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReconnectAddingControlsTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/control/ReconnectAddingControlsTest.html#testChangeControlCompetitor()">testChangeControlCompetitor</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">StaticControlInSecondRace.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/control/StaticControlInSecondRace.html#testStaticControlInSecondRace()">testStaticControlInSecondRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ReconnectWithStaticControlsTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/control/ReconnectWithStaticControlsTest.html#testStaticPointChanged()">testStaticPointChanged</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@@ -168,7 +451,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/CreateModelException.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.EventsFromClubsJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.EventsFromJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitor</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,12 +76,26 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.competitor">com.tractrac.subscription.lib.api.competitor</a></td>
<td class="colLast">
@@ -94,6 +108,64 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String)">addCompetitorToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;competitorName)</code>
<div class="block">Add the competitor the the event</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID)">addCompetitorToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;competitorName,
java.util.UUID&nbsp;competitorId)</code>
<div class="block">Add the competitor the the event</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#createCompetitor(java.lang.String)">createCompetitor</a></strong>(java.lang.String&nbsp;competitorName)</code>
<div class="block">Create a competitor</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#createCompetitor(java.util.UUID, java.lang.String)">createCompetitor</a></strong>(java.util.UUID&nbsp;uuid,
java.lang.String&nbsp;competitorName)</code>
<div class="block">Create a competitor</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToRace(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.event.ICompetitor)">addCompetitorToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor)</code>
<div class="block">Add a competitor to a race.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
@@ -134,16 +206,16 @@
<tbody>
<tr class="altColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&gt;</code></td>
<td class="colLast"><span class="strong">IEvent.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html#getCompetitors()">getCompetitors</a></strong>()</code>
<td class="colLast"><span class="strong">ICompetitorClass.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html#getCompetitors()">getCompetitors</a></strong>()</code>
<div class="block">
Returns a collection of the competitors of this event.</div>
Get a list of competitors in the class</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&gt;</code></td>
<td class="colLast"><span class="strong">ICompetitorClass.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html#getCompetitors()">getCompetitors</a></strong>()</code>
<td class="colLast"><span class="strong">IEvent.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html#getCompetitors()">getCompetitors</a></strong>()</code>
<div class="block">
Get a list of competitors in the class</div>
Returns a collection of the competitors of this event.</div>
</td>
</tr>
</tbody>
@@ -170,6 +242,46 @@
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#addLivePosition(com.tractrac.model.lib.api.event.ICompetitor, double, double, long)">addLivePosition</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor,
double&nbsp;lon,
double&nbsp;lat,
long&nbsp;timestamp)</code>
<div class="block">Adds a live position to the dataserver.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#addRaceCompetitor(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.route.IRoute, com.tractrac.model.lib.api.event.ICompetitor)">addRaceCompetitor</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/route/IRoute.html" title="interface in com.tractrac.model.lib.api.route">IRoute</a>&nbsp;route,
<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor)</code>
<div class="block">Add a competitor to a race</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#addStoredPosition(com.tractrac.model.lib.api.event.ICompetitor, double, double, long)">addStoredPosition</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor,
double&nbsp;lon,
double&nbsp;lat,
long&nbsp;timestamp)</code>
<div class="block">Adds a stored position to the dataserver.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api.competitor">
<!-- -->
</a>
@@ -211,7 +323,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.ICompetitorClass</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -138,7 +138,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitorClass.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.IEvent</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,20 +76,27 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.event">com.tractrac.subscription.lib.api.event</a></td>
<td class="colLast">
<div class="block">
@@ -101,6 +108,113 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#createEvent(java.lang.String)">createEvent</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Creates an event from a name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#createEvent(java.lang.String, java.util.UUID)">createEvent</a></strong>(java.lang.String&nbsp;name,
java.util.UUID&nbsp;uuid)</code>
<div class="block">Creates an event from a name.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String)">addCompetitorToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;competitorName)</code>
<div class="block">Add the competitor the the event</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID)">addCompetitorToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;competitorName,
java.util.UUID&nbsp;competitorId)</code>
<div class="block">Add the competitor the the event</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String)">addControlToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a control to an event</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, double, double, long)">addControlToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
double&nbsp;lat,
double&nbsp;lon,
long&nbsp;timestamp)</code>
<div class="block">Adds a control to an event with one control point</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, double, double, long, double, double, long)">addControlToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
double&nbsp;lat1,
double&nbsp;lon1,
long&nbsp;timestamp1,
double&nbsp;lat2,
double&nbsp;lon2,
long&nbsp;timestamp2)</code>
<div class="block">Adds a control to an event with two control points</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
java.util.UUID&nbsp;raceId)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID, long, long, long)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
java.util.UUID&nbsp;raceId,
long&nbsp;trackingStartTime,
long&nbsp;trackingEndTime,
long&nbsp;raceStartTime)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
@@ -160,6 +274,22 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api">ILocalDataserver</a></code></td>
<td class="colLast"><span class="strong">AbstractSubscriptionTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/AbstractSubscriptionTest.html#addDataserverToEvent(com.tractrac.model.lib.api.event.IEvent)">addDataserverToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event)</code>
<div class="block">Create a local dataserver that can be used to establish a communication
with the subscription library.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api">ILocalDataserver</a></code></td>
<td class="colLast"><span class="strong">AbstractSubscriptionTest.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/AbstractSubscriptionTest.html#addDataserverToEvent(com.tractrac.model.lib.api.event.IEvent, boolean, boolean)">addDataserverToEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
boolean&nbsp;isLive,
boolean&nbsp;isStored)</code>
<div class="block">Create a local dataserver that can be used to establish a communication
with the subscription library.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/IEventSubscriber.html" title="interface in com.tractrac.subscription.lib.api">IEventSubscriber</a></code></td>
<td class="colLast"><span class="strong">ISubscriberFactory.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ISubscriberFactory.html#createEventSubscriber(com.tractrac.model.lib.api.event.IEvent)">createEventSubscriber</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event)</code>
<div class="block">
@@ -175,6 +305,14 @@
Returns a subscriber for the event</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api">ILocalDataserver</a></code></td>
<td class="colLast"><span class="strong">ILocalDataServerFactory.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataServerFactory.html#createLocalDataServer(com.tractrac.model.lib.api.event.IEvent, boolean, boolean)">createLocalDataServer</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
boolean&nbsp;isLive,
boolean&nbsp;isStored)</code>
<div class="block">Creates and instance of a <a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html" title="interface in com.tractrac.subscription.lib.api"><code>ILocalDataserver</code></a></div>
</td>
</tr>
</tbody>
</table>
</li>
@@ -214,7 +352,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.IEventFactory</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IEventFactory.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -137,7 +137,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IEventFactory.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.IRace</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,20 +76,27 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.race">com.tractrac.subscription.lib.api.race</a></td>
<td class="colLast">
<div class="block">
@@ -101,6 +108,106 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
java.util.UUID&nbsp;raceId)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRacetoEvent(com.tractrac.model.lib.api.event.IEvent, java.lang.String, java.util.UUID, long, long, long)">addRacetoEvent</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event">IEvent</a>&nbsp;event,
java.lang.String&nbsp;name,
java.util.UUID&nbsp;raceId,
long&nbsp;trackingStartTime,
long&nbsp;trackingEndTime,
long&nbsp;raceStartTime)</code>
<div class="block">Adds a race to an event.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToRace(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.event.ICompetitor)">addCompetitorToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor)</code>
<div class="block">Add a competitor to a race.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControlRoute.html" title="interface in com.tractrac.model.lib.api.route">IControlRoute</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlRouteToRace(com.tractrac.model.lib.api.event.IRace)">addControlRouteToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race)</code>
<div class="block">Add a route to the race</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControlRoute.html" title="interface in com.tractrac.model.lib.api.route">IControlRoute</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlRouteToRace(com.tractrac.model.lib.api.event.IRace, java.lang.String)">addControlRouteToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.lang.String&nbsp;metadata)</code>
<div class="block">Add a route to the race</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToRace(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.route.IControl)">addControlToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a>&nbsp;control)</code>
<div class="block">Adds a control to the race.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToRace(com.tractrac.model.lib.api.event.IRace, java.lang.String)">addControlToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a control to the race.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/route/IControl.html" title="interface in com.tractrac.model.lib.api.route">IControl</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addControlToRace(com.tractrac.model.lib.api.event.IRace, java.lang.String, double, double, long)">addControlToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.lang.String&nbsp;name,
double&nbsp;lat,
double&nbsp;lon,
long&nbsp;timestamp)</code>
<div class="block">Adds a control to the race.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRaceCompetitorToRace(com.tractrac.model.lib.api.event.IRace, java.lang.String)">addRaceCompetitorToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a competitor to a race</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
@@ -217,13 +324,21 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#addRaceCompetitor(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.route.IRoute, com.tractrac.model.lib.api.event.ICompetitor)">addRaceCompetitor</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/route/IRoute.html" title="interface in com.tractrac.model.lib.api.route">IRoute</a>&nbsp;route,
<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor)</code>
<div class="block">Add a competitor to a race</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/IRaceSubscriber.html" title="interface in com.tractrac.subscription.lib.api">IRaceSubscriber</a></code></td>
<td class="colLast"><span class="strong">ISubscriberFactory.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ISubscriberFactory.html#createRaceSubscriber(com.tractrac.model.lib.api.event.IRace)">createRaceSubscriber</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race)</code>
<div class="block">
Returns a subscriber for a race.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/subscription/lib/api/IRaceSubscriber.html" title="interface in com.tractrac.subscription.lib.api">IRaceSubscriber</a></code></td>
<td class="colLast"><span class="strong">ISubscriberFactory.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ISubscriberFactory.html#createRaceSubscriber(com.tractrac.model.lib.api.event.IRace, java.net.URI, java.net.URI)">createRaceSubscriber</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.net.URI&nbsp;liveUri,
@@ -232,6 +347,13 @@
Returns a subscriber for a race.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#removeRaceCompetitor(com.tractrac.model.lib.api.event.IRace, java.util.UUID)">removeRaceCompetitor</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.util.UUID&nbsp;competitorId)</code>
<div class="block">Delete a race from the race</div>
</td>
</tr>
</tbody>
</table>
</li>
@@ -240,6 +362,27 @@
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/race/package-summary.html">com.tractrac.subscription.lib.api.race</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/race/package-summary.html">com.tractrac.subscription.lib.api.race</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">RacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#getAbandonedRace()">getAbandonedRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">RacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#getInitializedRace()">getInitializedRace</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></code></td>
<td class="colLast"><span class="strong">RacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#getReloadedRace()">getReloadedRace</a></strong>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/race/package-summary.html">com.tractrac.subscription.lib.api.race</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
@@ -254,31 +397,50 @@
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#addRace(com.tractrac.model.lib.api.event.IRace)">addRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">IRaceMessageListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/IRaceMessageListener.html#gotRaceMessage(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.data.IMessageData)">gotRaceMessage</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/data/IMessageData.html" title="interface in com.tractrac.model.lib.api.data">IMessageData</a>&nbsp;messageData)</code>
<div class="block">Invoked when a new race message arrives</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">IRaceStartStopTimesChangeListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/IRaceStartStopTimesChangeListener.html#gotRaceStartStopTime(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.data.IStartStopData)">gotRaceStartStopTime</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/data/IStartStopData.html" title="interface in com.tractrac.model.lib.api.data">IStartStopData</a>&nbsp;startStopData)</code>
<div class="block">Invoked when an update in the race start and/or stop time occurs.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">IRaceStartStopTimesChangeListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/IRaceStartStopTimesChangeListener.html#gotTrackingStartStopTime(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.data.IStartStopData)">gotTrackingStartStopTime</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/data/IStartStopData.html" title="interface in com.tractrac.model.lib.api.data">IStartStopData</a>&nbsp;startStopData)</code>
<div class="block">Invoked when an update in the tracking start and/or stop time occurs.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">IRacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/IRacesListener.html#updateRace(com.tractrac.model.lib.api.event.IRace)">updateRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race)</code>
<div class="block">This event is thrown when a race is updated.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RacesListener.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#updateRace(com.tractrac.model.lib.api.event.IRace)">updateRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race)</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructor parameters in <a href="../../../../../../../com/tractrac/subscription/lib/api/race/package-summary.html">com.tractrac.subscription.lib.api.race</a> with type arguments of type <a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/race/RacesListener.html#RacesListener(java.util.List)">RacesListener</a></strong>(java.util.List&lt;<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&gt;&nbsp;races)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@@ -297,7 +459,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceCompetitor</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -76,27 +76,34 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api">com.tractrac.model.lib.api</a></td>
<td class="colLast">
<div class="block">
Main package of the model project.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.competitor">com.tractrac.subscription.lib.api.competitor</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with competitors and positions</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.control">com.tractrac.subscription.lib.api.control</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with the controls and control passings</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.race">com.tractrac.subscription.lib.api.race</a></td>
<td class="colLast">
<div class="block">
@@ -108,6 +115,34 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a> in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/package-summary.html">com.tractrac.model.lib.api</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addCompetitorToRace(com.tractrac.model.lib.api.event.IRace, com.tractrac.model.lib.api.event.ICompetitor)">addCompetitorToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
<a href="../../../../../../../com/tractrac/model/lib/api/event/ICompetitor.html" title="interface in com.tractrac.model.lib.api.event">ICompetitor</a>&nbsp;competitor)</code>
<div class="block">Add a competitor to a race.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">IRaceCompetitor</a></code></td>
<td class="colLast"><span class="strong">AbstractModelTest.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/AbstractModelTest.html#addRaceCompetitorToRace(com.tractrac.model.lib.api.event.IRace, java.lang.String)">addRaceCompetitorToRace</a></strong>(<a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html" title="interface in com.tractrac.model.lib.api.event">IRace</a>&nbsp;race,
java.lang.String&nbsp;name)</code>
<div class="block">Adds a competitor to a race</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
@@ -250,7 +285,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceCompetitor.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.IRaceSerie</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceSerie.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -138,7 +138,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/IRaceSerie.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Interface com.tractrac.model.lib.api.event.ITeam</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -138,7 +138,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/ITeam.html" title="interface in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.RaceCompetitorTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.RaceLoadingException</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -123,7 +123,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceLoadingException.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.RaceSerieTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.RaceStatusType</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -28,7 +28,7 @@
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -82,6 +82,13 @@
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
</tbody>
</table>
</li>
@@ -138,6 +145,43 @@ the order they are declared.</div>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.subscription.lib.api">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a> in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/subscription/lib/api/package-summary.html">com.tractrac.subscription.lib.api</a> with parameters of type <a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#addRace(java.lang.String, long, long, long, com.tractrac.model.lib.api.event.RaceStatusType, java.net.URI)">addRace</a></strong>(java.lang.String&nbsp;raceName,
long&nbsp;trackingStartTime,
long&nbsp;trackingEndTime,
long&nbsp;raceStartTime,
<a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a>&nbsp;status,
java.net.URI&nbsp;parametersFile)</code>
<div class="block">Add a new race to the event</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ILocalDataserver.</span><code><strong><a href="../../../../../../../com/tractrac/subscription/lib/api/ILocalDataserver.html#updateRace(java.util.UUID, java.lang.String, long, long, long, com.tractrac.model.lib.api.event.RaceStatusType, java.net.URI)">updateRace</a></strong>(java.util.UUID&nbsp;raceId,
java.lang.String&nbsp;raceName,
long&nbsp;trackingStartTime,
long&nbsp;trackingEndTime,
long&nbsp;raceStartTime,
<a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a>&nbsp;status,
java.net.URI&nbsp;parametersFile)</code>
<div class="block">Update a race</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
@@ -153,7 +197,7 @@ the order they are declared.</div>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.RacesFromJSONTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:00:21 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.SameEventTest</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -0,0 +1,180 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.StartTimeType</title>
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.tractrac.model.lib.api.event.StartTimeType";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/tractrac/model/lib/api/event/class-use/StartTimeType.html" target="_top">Frames</a></li>
<li><a href="StartTimeType.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.tractrac.model.lib.api.event.StartTimeType" class="title">Uses of Class<br>com.tractrac.model.lib.api.event.StartTimeType</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.tractrac.model.lib.api.event">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a> in <a href="../../../../../../../com/tractrac/model/lib/api/event/package-summary.html">com.tractrac.model.lib.api.event</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/tractrac/model/lib/api/event/package-summary.html">com.tractrac.model.lib.api.event</a> that return <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><span class="strong">StartTimeType.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#getStartTime(java.lang.String)">getStartTime</a></strong>(java.lang.String&nbsp;startTimeType)</code>
<div class="block">Gets the start time type from a string</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><span class="strong">IRace.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/IRace.html#getStartTimeType()">getStartTimeType</a></strong>()</code>
<div class="block">
Gets the start time type of the race.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></code></td>
<td class="colLast"><span class="strong">StartTimeType.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a>[]</code></td>
<td class="colLast"><span class="strong">StartTimeType.</span><code><strong><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html#values()">values</a></strong>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/tractrac/model/lib/api/event/class-use/StartTimeType.html" target="_top">Frames</a></li>
<li><a href="StartTimeType.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
@@ -0,0 +1,115 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Class com.tractrac.model.lib.api.event.StartTimeTypeTest</title>
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.tractrac.model.lib.api.event.StartTimeTypeTest";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/tractrac/model/lib/api/event/class-use/StartTimeTypeTest.html" target="_top">Frames</a></li>
<li><a href="StartTimeTypeTest.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.tractrac.model.lib.api.event.StartTimeTypeTest" class="title">Uses of Class<br>com.tractrac.model.lib.api.event.StartTimeTypeTest</h2>
</div>
<div class="classUseContainer">No usage of com.tractrac.model.lib.api.event.StartTimeTypeTest</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/tractrac/model/lib/api/event/class-use/StartTimeTypeTest.html" target="_top">Frames</a></li>
<li><a href="StartTimeTypeTest.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.event</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -21,9 +21,21 @@
<li><a href="IRaceSerie.html" title="interface in com.tractrac.model.lib.api.event" target="classFrame"><i>IRaceSerie</i></a></li>
<li><a href="ITeam.html" title="interface in com.tractrac.model.lib.api.event" target="classFrame"><i>ITeam</i></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">AbstractJSONTest</a></li>
<li><a href="EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">EventsFromClubsJSONTest</a></li>
<li><a href="EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">EventsFromJSONTest</a></li>
<li><a href="RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RaceCompetitorTest</a></li>
<li><a href="RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RaceSerieTest</a></li>
<li><a href="RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">RacesFromJSONTest</a></li>
<li><a href="SameEventTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">SameEventTest</a></li>
<li><a href="StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event" target="classFrame">StartTimeTypeTest</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event" target="classFrame">RaceStatusType</a></li>
<li><a href="StartTimeType.html" title="enum in com.tractrac.model.lib.api.event" target="classFrame">StartTimeType</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.event</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -140,6 +140,51 @@
</table>
</li>
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event">AbstractJSONTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event">EventsFromClubsJSONTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event">EventsFromJSONTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event">RaceCompetitorTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event">RaceSerieTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event">RacesFromJSONTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event">SameEventTest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event">StartTimeTypeTest</a></td>
<td class="colLast">
<div class="block">Class used to test the <a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><code>StartTimeType</code></a> enumerate</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation">
<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
@@ -151,6 +196,12 @@
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event">RaceStatusType</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event">StartTimeType</a></td>
<td class="colLast">
<div class="block">Type of start time to use.</div>
</td>
</tr>
</tbody>
</table>
</li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>com.tractrac.model.lib.api.event Class Hierarchy</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -74,6 +74,25 @@
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">junit.framework.Assert
<ul>
<li type="circle">junit.framework.TestCase (implements junit.framework.Test)
<ul>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/AbstractJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">AbstractJSONTest</span></a>
<ul>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromClubsJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">EventsFromClubsJSONTest</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/EventsFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">EventsFromJSONTest</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/RacesFromJSONTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">RacesFromJSONTest</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/SameEventTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">SameEventTest</span></a></li>
</ul>
</li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/RaceCompetitorTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">RaceCompetitorTest</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/RaceSerieTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">RaceSerieTest</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeTypeTest.html" title="class in com.tractrac.model.lib.api.event"><span class="strong">StartTimeTypeTest</span></a></li>
</ul>
</li>
</ul>
</li>
<li type="circle">java.lang.Throwable (implements java.io.Serializable)
<ul>
<li type="circle">java.lang.Exception
@@ -144,6 +163,7 @@
<ul>
<li type="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<ul>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/StartTimeType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">StartTimeType</span></a></li>
<li type="circle">com.tractrac.model.lib.api.event.<a href="../../../../../../com/tractrac/model/lib/api/event/RaceStatusType.html" title="enum in com.tractrac.model.lib.api.event"><span class="strong">RaceStatusType</span></a></li>
</ul>
</li>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:05 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>Uses of Package com.tractrac.model.lib.api.event</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -83,41 +83,62 @@
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.attachment">com.tractrac.model.lib.api.attachment</a></td>
<td class="colLast">
<div class="block">
Contains the functionality to attach an object to other object.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.event">com.tractrac.model.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Events, races and competitors</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.metadata">com.tractrac.model.lib.api.metadata</a></td>
<td class="colLast">
<div class="block">
The metadata functionality</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.model.lib.api.route">com.tractrac.model.lib.api.route</a></td>
<td class="colLast">
<div class="block">
The route configuration: controls, paths and routes</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api">com.tractrac.subscription.lib.api</a></td>
<td class="colLast">
<div class="block">
Contains the classes used to add a subscription to an event.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.competitor">com.tractrac.subscription.lib.api.competitor</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with competitors and positions</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.control">com.tractrac.subscription.lib.api.control</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with the controls and control passings</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.event">com.tractrac.subscription.lib.api.event</a></td>
<td class="colLast">
<div class="block">
Subscriptions related with the event and/or the connection</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><a href="#com.tractrac.subscription.lib.api.race">com.tractrac.subscription.lib.api.race</a></td>
<td class="colLast">
<div class="block">
@@ -137,11 +158,53 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api">CreateModelException</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ICompetitor.html#com.tractrac.model.lib.api">ICompetitor</a>
<div class="block">
Encapsulates data related to a Competitor of an Event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IEvent.html#com.tractrac.model.lib.api">IEvent</a>
<div class="block">Encapsulates data related to an Event: Races, Competitors, Competitor
Classes, Routes.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IEventFactory.html#com.tractrac.model.lib.api">IEventFactory</a>
<div class="block">
Factory used to create an <a href="../../../../../../com/tractrac/model/lib/api/event/IEvent.html" title="interface in com.tractrac.model.lib.api.event"><code>IEvent</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRace.html#com.tractrac.model.lib.api">IRace</a>
<div class="block">
Encapsulates data related to a specific Race of a TracTrac Event.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRaceCompetitor.html#com.tractrac.model.lib.api">IRaceCompetitor</a>
<div class="block">
Encapsulates data related to a specific Competitor of a specific Race.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.attachment">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../com/tractrac/model/lib/api/event/package-summary.html">com.tractrac.model.lib.api.event</a> used by <a href="../../../../../../com/tractrac/model/lib/api/attachment/package-summary.html">com.tractrac.model.lib.api.attachment</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api.attachment">CreateModelException</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@@ -155,59 +218,97 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api.event">CreateModelException</a>&nbsp;</td>
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/AbstractJSONTest.html#com.tractrac.model.lib.api.event">AbstractJSONTest</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api.event">CreateModelException</a>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ICompetitor.html#com.tractrac.model.lib.api.event">ICompetitor</a>
<div class="block">
Encapsulates data related to a Competitor of an Event.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ICompetitorClass.html#com.tractrac.model.lib.api.event">ICompetitorClass</a>
<div class="block">
Encapsulates data related to a Competitor Class in an Event.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IEvent.html#com.tractrac.model.lib.api.event">IEvent</a>
<div class="block">Encapsulates data related to an Event: Races, Competitors, Competitor
Classes, Routes.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRace.html#com.tractrac.model.lib.api.event">IRace</a>
<div class="block">
Encapsulates data related to a specific Race of a TracTrac Event.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRaceCompetitor.html#com.tractrac.model.lib.api.event">IRaceCompetitor</a>
<div class="block">
Encapsulates data related to a specific Competitor of a specific Race.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRaceSerie.html#com.tractrac.model.lib.api.event">IRaceSerie</a>
<div class="block">
A serie of races is a list of races that are a part of the same serie.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ITeam.html#com.tractrac.model.lib.api.event">ITeam</a>
<div class="block">
Encapsulates data related to a Team of an Event.</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/RaceLoadingException.html#com.tractrac.model.lib.api.event">RaceLoadingException</a>
<div class="block">
This exception is thrown when there is an error loading the race</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/RaceStatusType.html#com.tractrac.model.lib.api.event">RaceStatusType</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/StartTimeType.html#com.tractrac.model.lib.api.event">StartTimeType</a>
<div class="block">Type of start time to use.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.metadata">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../com/tractrac/model/lib/api/event/package-summary.html">com.tractrac.model.lib.api.event</a> used by <a href="../../../../../../com/tractrac/model/lib/api/metadata/package-summary.html">com.tractrac.model.lib.api.metadata</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api.metadata">CreateModelException</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.tractrac.model.lib.api.route">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../com/tractrac/model/lib/api/event/package-summary.html">com.tractrac.model.lib.api.event</a> used by <a href="../../../../../../com/tractrac/model/lib/api/route/package-summary.html">com.tractrac.model.lib.api.route</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.model.lib.api.route">CreateModelException</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@@ -221,6 +322,15 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.subscription.lib.api">CreateModelException</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ICompetitor.html#com.tractrac.subscription.lib.api">ICompetitor</a>
<div class="block">
Encapsulates data related to a Competitor of an Event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IEvent.html#com.tractrac.subscription.lib.api">IEvent</a>
<div class="block">Encapsulates data related to an Event: Races, Competitors, Competitor
Classes, Routes.</div>
@@ -232,6 +342,9 @@
Encapsulates data related to a specific Race of a TracTrac Event.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/RaceStatusType.html#com.tractrac.subscription.lib.api">RaceStatusType</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@@ -245,12 +358,15 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.subscription.lib.api.competitor">CreateModelException</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/ICompetitor.html#com.tractrac.subscription.lib.api.competitor">ICompetitor</a>
<div class="block">
Encapsulates data related to a Competitor of an Event.</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRaceCompetitor.html#com.tractrac.subscription.lib.api.competitor">IRaceCompetitor</a>
<div class="block">
Encapsulates data related to a specific Competitor of a specific Race.</div>
@@ -269,6 +385,9 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/CreateModelException.html#com.tractrac.subscription.lib.api.control">CreateModelException</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../com/tractrac/model/lib/api/event/class-use/IRaceCompetitor.html#com.tractrac.subscription.lib.api.control">IRaceCompetitor</a>
<div class="block">
Encapsulates data related to a specific Competitor of a specific Race.</div>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:03 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IMetadata</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:03 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IMetadataContainer</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:03 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IMetadataFactory</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Mon Aug 11 09:04:03 UTC 2014 -->
<!-- Generated by javadoc (version 1.7.0_55) on Wed Nov 19 15:29:15 UTC 2014 -->
<title>IPropertiesContainer</title>
<meta name="date" content="2014-08-11">
<meta name="date" content="2014-11-19">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
@@ -37,7 +37,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/metadata/IMetadataFactory.html" title="interface in com.tractrac.model.lib.api.metadata"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/metadata/MetadataTest.html" title="class in com.tractrac.model.lib.api.metadata"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/metadata/IPropertiesContainer.html" target="_top">Frames</a></li>
@@ -173,7 +173,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/tractrac/model/lib/api/metadata/IMetadataFactory.html" title="interface in com.tractrac.model.lib.api.metadata"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
<li><a href="../../../../../../com/tractrac/model/lib/api/metadata/MetadataTest.html" title="class in com.tractrac.model.lib.api.metadata"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/tractrac/model/lib/api/metadata/IPropertiesContainer.html" target="_top">Frames</a></li>

Some files were not shown because too many files have changed in this diff Show More