Skip to content

Commit 1779a39

Browse files
committed
Added full codebase to repo, including all code that was present in project when I tookover.
1 parent 2e5eab9 commit 1779a39

File tree

343 files changed

+94155
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

343 files changed

+94155
-0
lines changed

.classpath

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="httpsever"/>
5+
<classpathentry kind="src" path="server_samples"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
7+
<classpathentry kind="output" path="bin"/>
8+
</classpath>

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
ehthumbs.db
37+
Thumbs.db
38+

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>madtp</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled
3+
org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
4+
org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
5+
org.eclipse.jdt.core.compiler.annotation.nonnull.secondary=
6+
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
7+
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
8+
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
9+
org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
10+
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
11+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
12+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
13+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
14+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
15+
org.eclipse.jdt.core.compiler.compliance=1.8
16+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
17+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
18+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
19+
org.eclipse.jdt.core.compiler.problem.APILeak=warning
20+
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
21+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
22+
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
23+
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
24+
org.eclipse.jdt.core.compiler.problem.deadCode=warning
25+
org.eclipse.jdt.core.compiler.problem.deprecation=warning
26+
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
27+
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
28+
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
29+
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
30+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
31+
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
32+
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
33+
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
34+
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
35+
org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
36+
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
37+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
38+
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
39+
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
40+
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
41+
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
42+
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
43+
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
44+
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
45+
org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
46+
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
47+
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
48+
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
49+
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
50+
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
51+
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
52+
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
53+
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
54+
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
55+
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
56+
org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning
57+
org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning
58+
org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
59+
org.eclipse.jdt.core.compiler.problem.nullReference=warning
60+
org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
61+
org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
62+
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
63+
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
64+
org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning
65+
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
66+
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
67+
org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
68+
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
69+
org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
70+
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
71+
org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore
72+
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
73+
org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
74+
org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
75+
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
76+
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
77+
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
78+
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
79+
org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled
80+
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
81+
org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning
82+
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
83+
org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
84+
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
85+
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
86+
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
87+
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
88+
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning
89+
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled
90+
org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info
91+
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
92+
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
93+
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
94+
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
95+
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
96+
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
97+
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
98+
org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore
99+
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
100+
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
101+
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
102+
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
103+
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
104+
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
105+
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
106+
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
107+
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
108+
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
109+
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
110+
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
111+
org.eclipse.jdt.core.compiler.source=1.8

server/.classpath

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="src" path="httpsever"/>
5+
<classpathentry kind="src" path="server_samples"/>
6+
<classpathentry kind="src" path="src"/>
7+
<classpathentry kind="lib" path="2017dtp5max.jar"/>
8+
<classpathentry kind="lib" path="2017dtp5MAXtake2.jar"/>
9+
<classpathentry kind="lib" path="2017test.jar"/>
10+
<classpathentry kind="lib" path="2017testmins.jar"/>
11+
<classpathentry kind="lib" path="2017testnew.jar"/>
12+
<classpathentry kind="lib" path="2017testtake3.jar"/>
13+
<classpathentry kind="lib" path="gojo210exp1.jar"/>
14+
<classpathentry kind="lib" path="gojo210exp2.jar"/>
15+
<classpathentry kind="lib" path="testerror.jar"/>
16+
<classpathentry kind="lib" path="testFramework.jar"/>
17+
<classpathentry kind="lib" path="testnullerror.jar"/>
18+
<classpathentry kind="lib" path="testsamerror.jar"/>
19+
<classpathentry kind="lib" path="/Users/drew/Programs/eclipse-workspace/Schedule_App/server/lib/commons-codec-1.11/commons-codec-1.11.jar"/>
20+
<classpathentry kind="lib" path="/Users/drew/Programs/eclipse-workspace/Schedule_App/server/lib/commons-codec-1.11/commons-codec-1.11-test-sources.jar"/>
21+
<classpathentry kind="lib" path="/Users/drew/Programs/eclipse-workspace/Schedule_App/server/lib/commons-codec-1.11/commons-codec-1.11-tests.jar"/>
22+
<classpathentry kind="lib" path="/Users/drew/Programs/eclipse-workspace/Schedule_App/server/lib/commons-codec-1.11/commons-codec-1.11-sources.jar"/>
23+
<classpathentry kind="lib" path="/Users/drew/Programs/eclipse-workspace/Schedule_App/server/lib/commons-codec-1.11/commons-codec-1.11-javadoc.jar"/>
24+
<classpathentry kind="output" path="bin"/>
25+
</classpath>

server/.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>server</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

server/DTPtoyexample.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<simpleDTP>
2+
3+
<activity>
4+
<name> Aa </name>
5+
<duration>
6+
<min> 30 </min>
7+
<max> 30 </max>
8+
</duration>
9+
<availability>
10+
<est> 0 </est>
11+
<let> 30 </let>
12+
</availability>
13+
</activity>
14+
15+
<activity>
16+
<name> Bb </name>
17+
<duration>
18+
<min> 30 </min>
19+
<max> 30 </max>
20+
</duration>
21+
<availability>
22+
<est> 0 </est>
23+
<let> 100 </let>
24+
</availability>
25+
</activity>
26+
27+
<activity>
28+
<name> Cc </name>
29+
<duration>
30+
<min> 30 </min>
31+
<max> 30 </max>
32+
</duration>
33+
<availability>
34+
<est> 0 </est>
35+
<let> 100 </let>
36+
</availability>
37+
</activity>
38+
39+
<constraint>
40+
<type> nonconcurrent </type>
41+
<source> Aa </source>
42+
<destination> Bb </destination>
43+
</constraint>
44+
<constraint>
45+
<type> nonconcurrent </type>
46+
<source> Aa </source>
47+
<destination> Cc </destination>
48+
</constraint>
49+
<constraint>
50+
<type> nonconcurrent </type>
51+
<source> Cc </source>
52+
<destination> Bb </destination>
53+
</constraint>
54+
55+
</simpleDTP>
56+

server/DUTPtoyexampleDC.xml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<DUTP>
2+
3+
<simpleDTP>
4+
5+
<activity>
6+
<name> Aa </name>
7+
<duration>
8+
<min> 30 </min>
9+
<max> 30 </max>
10+
</duration>
11+
<availability>
12+
<est> 0 </est>
13+
<let> 40 </let>
14+
</availability>
15+
</activity>
16+
17+
<activity>
18+
<name> Bb </name>
19+
<duration>
20+
<min> 30 </min>
21+
<max> 30 </max>
22+
</duration>
23+
<availability>
24+
<est> 0 </est>
25+
<let> 100 </let>
26+
</availability>
27+
</activity>
28+
29+
<activity>
30+
<name> Cc </name>
31+
<duration>
32+
<min> 30 </min>
33+
<max> 30 </max>
34+
</duration>
35+
<availability>
36+
<est> 0 </est>
37+
<let> 100 </let>
38+
</availability>
39+
</activity>
40+
41+
<constraint>
42+
<type> nonconcurrent </type>
43+
<source> Aa </source>
44+
<destination> Bb </destination>
45+
</constraint>
46+
<constraint>
47+
<type> nonconcurrent </type>
48+
<source> Aa </source>
49+
<destination> Cc </destination>
50+
</constraint>
51+
<constraint>
52+
<type> nonconcurrent </type>
53+
<source> Cc </source>
54+
<destination> Bb </destination>
55+
</constraint>
56+
57+
</simpleDTP>
58+
59+
<sporadicEvent>
60+
<name> SE </name>
61+
<duration> 1 </duration>
62+
<activeInterval> 100 </activeInterval>
63+
<est> 32 </est>
64+
<let> 32 </let>
65+
<precedence> 0 </precedence>
66+
</sporadicEvent>
67+
68+
</DUTP>

0 commit comments

Comments
 (0)