Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NetworkedGraphicsMV3500
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Savage
NetworkedGraphicsMV3500
Commits
b1d75392
Commit
b1d75392
authored
5 years ago
by
brutzman
Browse files
Options
Downloads
Patches
Plain Diff
improved completion message
parent
0b66dbe2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/src/OpenDis7Examples/AllPduSender.java
+3
-3
3 additions, 3 deletions
examples/src/OpenDis7Examples/AllPduSender.java
with
3 additions
and
3 deletions
examples/src/OpenDis7Examples/AllPduSender.java
+
3
−
3
View file @
b1d75392
...
@@ -62,7 +62,7 @@ public class AllPduSender
...
@@ -62,7 +62,7 @@ public class AllPduSender
{
{
// each case value is DISPDUType
// each case value is DISPDUType
case
OTHER:
// 0
case
OTHER:
// 0
System
.
out
.
println
(
"*** Note: DISPDUType."
+
pdu
.
name
()
+
" not supported"
);
// TODO why was this received?
System
.
out
.
println
(
"*** Note: DISPDUType."
+
pdu
.
name
()
+
"="
+
pdu
.
getValue
()
+
" not supported"
);
// TODO why was this received?
break
;
// nothing to send
break
;
// nothing to send
case
ENTITY_STATE:
// 1
case
ENTITY_STATE:
// 1
...
@@ -369,7 +369,7 @@ public class AllPduSender
...
@@ -369,7 +369,7 @@ public class AllPduSender
// https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments/src/MV3500Cohort2018JulySeptember/projects/LoeffelmanSeverson
// https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments/src/MV3500Cohort2018JulySeptember/projects/LoeffelmanSeverson
CommentPdu
newCommentPdu
=
new
CommentPdu
();
CommentPdu
newCommentPdu
=
new
CommentPdu
();
ArrayList
<
VariableDatum
>
payloadList
=
new
ArrayList
<
VariableDatum
>();
ArrayList
<
VariableDatum
>
payloadList
=
new
ArrayList
<>();
ArrayList
<
String
>
commentsList
=
new
ArrayList
<>();
ArrayList
<
String
>
commentsList
=
new
ArrayList
<>();
commentsList
.
add
(
"Hello CommentPDU"
);
commentsList
.
add
(
"Hello CommentPDU"
);
...
@@ -472,7 +472,7 @@ public class AllPduSender
...
@@ -472,7 +472,7 @@ public class AllPduSender
public
static
void
main
(
String
args
[])
public
static
void
main
(
String
args
[])
{
{
AllPduSender
allPduSender
;
AllPduSender
allPduSender
;
int
totalSentPdus
=
0
;
int
totalSentPdus
;
if
(
args
.
length
==
2
)
if
(
args
.
length
==
2
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment