Skip to content

Commit cd1b46e

Browse files
BazardTom Duchêne
authored and
Tom Duchêne
committed
Replaced id by pid
1 parent 477f034 commit cd1b46e

25 files changed

+90
-90
lines changed

Diff for: examples/Augmenta_2D/Augmenta_2D.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ void draw() {
8181
// You can also use these events functions which are triggered automatically
8282

8383
void personEntered (AugmentaPerson p) {
84-
//println("Person entered : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
84+
//println("Person entered : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
8585
}
8686

8787
void personUpdated (AugmentaPerson p) {
88-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
88+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
8989
}
9090

9191
void personWillLeave (AugmentaPerson p) {
92-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
92+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
9393
}

Diff for: examples/Augmenta_3D/Augmenta_3D.pde

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void draw() {
9494
//println("People size : "+rect.x+" "+rect.y+" "+rectHeight);
9595
canvas.pushMatrix();
9696
canvas.translate(15, 0, 0);
97-
canvas.text("pid : "+people[i].id+"\n"+"oid : "+people[i].oid+"\n"+"age : "+people[i].age, 0, 0);
97+
canvas.text("pid : "+people[i].pid+"\n"+"oid : "+people[i].oid+"\n"+"age : "+people[i].age, 0, 0);
9898
canvas.popMatrix();
9999
}
100100

@@ -123,13 +123,13 @@ void draw() {
123123
// You can also use these events functions which are triggered automatically
124124

125125
void personEntered (AugmentaPerson p) {
126-
//println("Person entered : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
126+
//println("Person entered : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
127127
}
128128

129129
void personUpdated (AugmentaPerson p) {
130-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
130+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
131131
}
132132

133133
void personWillLeave (AugmentaPerson p) {
134-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
134+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
135135
}

Diff for: examples/Augmenta_assets/Augmenta_assets.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void movieEvent(Movie m) {
194194
}
195195

196196
void personEntered (AugmentaPerson p) {
197-
//println("Person entered : "+ p.id + "at ("+p.centroid.x+","+p.centroid.y+")");
197+
//println("Person entered : "+ p.pid + "at ("+p.centroid.x+","+p.centroid.y+")");
198198

199199
// [Sound]
200200
if(activateSound){
@@ -204,9 +204,9 @@ void personEntered (AugmentaPerson p) {
204204
}
205205

206206
void personUpdated (AugmentaPerson p) {
207-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
207+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
208208
}
209209

210210
void personWillLeave (AugmentaPerson p) {
211-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
211+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
212212
}

Diff for: examples/Augmenta_drawZone/Augmenta_drawZone.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ void draw() {
7171
// You can also use these events functions which are triggered automatically
7272

7373
void personEntered (AugmentaPerson p) {
74-
//println("Person entered : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
74+
//println("Person entered : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
7575
}
7676

7777
void personUpdated (AugmentaPerson p) {
78-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
78+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
7979
}
8080

8181
void personWillLeave (AugmentaPerson p) {
82-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
82+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
8383
}

Diff for: examples/Augmenta_pong/Augmenta_pong.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ void draw() {
6464
// You can also use these events functions which are triggered automatically
6565

6666
void personEntered (AugmentaPerson p) {
67-
//println("Person entered : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
67+
//println("Person entered : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
6868
}
6969

7070
void personUpdated (AugmentaPerson p) {
71-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
71+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
7272
}
7373

7474
void personWillLeave (AugmentaPerson p) {
75-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
75+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
7676
}

Diff for: examples/Augmenta_triggers/Augmenta_triggers.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ void personWillLeaveTrigger(int id, Trigger t){
117117
// You can also use these events functions which are triggered automatically
118118

119119
void personEntered (AugmentaPerson p) {
120-
//println("Person entered : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
120+
//println("Person entered : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
121121
}
122122

123123
void personUpdated (AugmentaPerson p) {
124-
//println("Person updated : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
124+
//println("Person updated : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
125125
}
126126

127127
void personWillLeave (AugmentaPerson p) {
128-
//println("Person will leave : "+ p.id + " at ("+p.centroid.x+","+p.centroid.y+")");
128+
//println("Person will leave : "+ p.pid + " at ("+p.centroid.x+","+p.centroid.y+")");
129129
}

Diff for: examples/Augmenta_triggers/Trigger.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public class Trigger{
2222
for (int i=0; i<people.length; i++) {
2323
PVector p = people[i].centroid;
2424
if (pointIsInside(p)){
25-
if (!peopleInside.hasValue(people[i].id)){
25+
if (!peopleInside.hasValue(people[i].pid)){
2626
// Send message to the app : someone entered
27-
app.personEnteredTrigger(people[i].id, this);
27+
app.personEnteredTrigger(people[i].pid, this);
2828
}
29-
newPeopleInside.append(people[i].id);
29+
newPeopleInside.append(people[i].pid);
3030
}
3131
}
3232

Diff for: library/AugmentaP5.jar

2 Bytes
Binary file not shown.

Diff for: reference/allclasses-frame.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>All Classes (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

Diff for: reference/allclasses-noframe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>All Classes (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

Diff for: reference/augmentaP5/AugmentaP5.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>AugmentaP5 (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/augmentaP5/AugmentaPerson.html

+16-16
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>AugmentaPerson (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
@@ -178,28 +178,28 @@ <h3>Field Summary</h3>
178178
</tr>
179179
<tr class="altColor">
180180
<td class="colFirst"><code>int</code></td>
181-
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#id">id</a></span></code>
182-
<div class="block">Unique ID, different for each Person as long as Augmenta is running</div>
183-
</td>
184-
</tr>
185-
<tr class="rowColor">
186-
<td class="colFirst"><code>int</code></td>
187181
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#lastUpdated">lastUpdated</a></span></code>
188182
<div class="block">(deprecated)</div>
189183
</td>
190184
</tr>
191-
<tr class="altColor">
185+
<tr class="rowColor">
192186
<td class="colFirst"><code>int</code></td>
193187
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#oid">oid</a></span></code>
194188
<div class="block">Ordered ID (not usually used), ID ranging from 0-Total Number of people</div>
195189
</td>
196190
</tr>
197-
<tr class="rowColor">
191+
<tr class="altColor">
198192
<td class="colFirst"><code>processing.core.PVector</code></td>
199193
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#opticalFlow">opticalFlow</a></span></code>
200194
<div class="block">Average motion within a Person's area</div>
201195
</td>
202196
</tr>
197+
<tr class="rowColor">
198+
<td class="colFirst"><code>int</code></td>
199+
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#pid">pid</a></span></code>
200+
<div class="block">Unique ID, different for each Person as long as Augmenta is running</div>
201+
</td>
202+
</tr>
203203
<tr class="altColor">
204204
<td class="colFirst"><code>processing.core.PVector</code></td>
205205
<td class="colLast"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#velocity">velocity</a></span></code>
@@ -226,7 +226,7 @@ <h3>Constructor Summary</h3>
226226
</td>
227227
</tr>
228228
<tr class="rowColor">
229-
<td class="colOne"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#AugmentaPerson-int-int-int-float-processing.core.PVector-processing.core.PVector-augmentaP5.RectangleF-float-float-float-">AugmentaPerson</a></span>(int&nbsp;_id,
229+
<td class="colOne"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#AugmentaPerson-int-int-int-float-processing.core.PVector-processing.core.PVector-augmentaP5.RectangleF-float-float-float-">AugmentaPerson</a></span>(int&nbsp;_pid,
230230
int&nbsp;_oid,
231231
int&nbsp;_age,
232232
float&nbsp;_depth,
@@ -238,7 +238,7 @@ <h3>Constructor Summary</h3>
238238
float&nbsp;_highestZ)</code>&nbsp;</td>
239239
</tr>
240240
<tr class="altColor">
241-
<td class="colOne"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#AugmentaPerson-int-processing.core.PVector-augmentaP5.RectangleF-">AugmentaPerson</a></span>(int&nbsp;_id,
241+
<td class="colOne"><code><span class="memberNameLink"><a href="../augmentaP5/AugmentaPerson.html#AugmentaPerson-int-processing.core.PVector-augmentaP5.RectangleF-">AugmentaPerson</a></span>(int&nbsp;_pid,
242242
processing.core.PVector&nbsp;_centroid,
243243
<a href="../augmentaP5/RectangleF.html" title="class in augmentaP5">RectangleF</a>&nbsp;_boundingRect)</code>&nbsp;</td>
244244
</tr>
@@ -302,13 +302,13 @@ <h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/
302302
<!-- -->
303303
</a>
304304
<h3>Field Detail</h3>
305-
<a name="id">
305+
<a name="pid">
306306
<!-- -->
307307
</a>
308308
<ul class="blockList">
309309
<li class="blockList">
310-
<h4>id</h4>
311-
<pre>public&nbsp;int id</pre>
310+
<h4>pid</h4>
311+
<pre>public&nbsp;int pid</pre>
312312
<div class="block">Unique ID, different for each Person as long as Augmenta is running</div>
313313
</li>
314314
</ul>
@@ -460,7 +460,7 @@ <h4>AugmentaPerson</h4>
460460
<ul class="blockList">
461461
<li class="blockList">
462462
<h4>AugmentaPerson</h4>
463-
<pre>public&nbsp;AugmentaPerson(int&nbsp;_id,
463+
<pre>public&nbsp;AugmentaPerson(int&nbsp;_pid,
464464
int&nbsp;_oid,
465465
int&nbsp;_age,
466466
float&nbsp;_depth,
@@ -478,7 +478,7 @@ <h4>AugmentaPerson</h4>
478478
<ul class="blockList">
479479
<li class="blockList">
480480
<h4>AugmentaPerson</h4>
481-
<pre>public&nbsp;AugmentaPerson(int&nbsp;_id,
481+
<pre>public&nbsp;AugmentaPerson(int&nbsp;_pid,
482482
processing.core.PVector&nbsp;_centroid,
483483
<a href="../augmentaP5/RectangleF.html" title="class in augmentaP5">RectangleF</a>&nbsp;_boundingRect)</pre>
484484
</li>

Diff for: reference/augmentaP5/InteractiveArea.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>InteractiveArea (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/augmentaP5/RectangleF.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>RectangleF (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/augmentaP5/package-frame.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>augmentaP5 (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/augmentaP5/package-summary.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>augmentaP5 (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/augmentaP5/package-tree.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>augmentaP5 Class Hierarchy (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">

Diff for: reference/constant-values.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>Constant Field Values (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

Diff for: reference/deprecated-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>Deprecated List (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

Diff for: reference/help-doc.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>API Help (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

Diff for: reference/index-all.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>Index (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
@@ -219,10 +219,6 @@ <h2 class="title">H</h2>
219219
</a>
220220
<h2 class="title">I</h2>
221221
<dl>
222-
<dt><span class="memberNameLink"><a href="augmentaP5/AugmentaPerson.html#id">id</a></span> - Variable in class augmentaP5.<a href="augmentaP5/AugmentaPerson.html" title="class in augmentaP5">AugmentaPerson</a></dt>
223-
<dd>
224-
<div class="block">Unique ID, different for each Person as long as Augmenta is running</div>
225-
</dd>
226222
<dt><span class="memberNameLink"><a href="augmentaP5/AugmentaP5.html#interactiveArea">interactiveArea</a></span> - Variable in class augmentaP5.<a href="augmentaP5/AugmentaP5.html" title="class in augmentaP5">AugmentaP5</a></dt>
227223
<dd>&nbsp;</dd>
228224
<dt><a href="augmentaP5/InteractiveArea.html" title="class in augmentaP5"><span class="typeNameLink">InteractiveArea</span></a> - Class in <a href="augmentaP5/package-summary.html">augmentaP5</a></dt>
@@ -271,6 +267,10 @@ <h2 class="title">P</h2>
271267
<dd>
272268
<div class="block">Hashtable of current People objects.</div>
273269
</dd>
270+
<dt><span class="memberNameLink"><a href="augmentaP5/AugmentaPerson.html#pid">pid</a></span> - Variable in class augmentaP5.<a href="augmentaP5/AugmentaPerson.html" title="class in augmentaP5">AugmentaPerson</a></dt>
271+
<dd>
272+
<div class="block">Unique ID, different for each Person as long as Augmenta is running</div>
273+
</dd>
274274
<dt><span class="memberNameLink"><a href="augmentaP5/AugmentaP5.html#pre--">pre()</a></span> - Method in class augmentaP5.<a href="augmentaP5/AugmentaP5.html" title="class in augmentaP5">AugmentaP5</a></dt>
275275
<dd>&nbsp;</dd>
276276
</dl>

Diff for: reference/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>Javadocs: AugmentaP5</title>
77
<script type="text/javascript">
88
targetPage = "" + window.location.search;

Diff for: reference/overview-tree.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:30:31 CEST 2016 -->
5+
<!-- Generated by javadoc (1.8.0_66) on Mon Apr 25 17:53:51 CEST 2016 -->
66
<title>Class Hierarchy (Javadocs: AugmentaP5)</title>
77
<meta name="date" content="2016-04-25">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

0 commit comments

Comments
 (0)