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
e571f876
Commit
e571f876
authored
5 years ago
by
terry-norbraten
Browse files
Options
Downloads
Patches
Plain Diff
javadoc
parent
fa9fb674
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src-generated/edu/nps/moves/dis7/IntercomSignalPdu.java
+4
-4
4 additions, 4 deletions
src-generated/edu/nps/moves/dis7/IntercomSignalPdu.java
src-generated/edu/nps/moves/dis7/SignalPdu.java
+16
-7
16 additions, 7 deletions
src-generated/edu/nps/moves/dis7/SignalPdu.java
with
20 additions
and
11 deletions
src-generated/edu/nps/moves/dis7/IntercomSignalPdu.java
+
4
−
4
View file @
e571f876
...
@@ -14,10 +14,10 @@ import edu.nps.moves.dis7.enumerations.*;
...
@@ -14,10 +14,10 @@ import edu.nps.moves.dis7.enumerations.*;
public
class
IntercomSignalPdu
extends
RadioCommunicationsFamilyPdu
implements
Serializable
public
class
IntercomSignalPdu
extends
RadioCommunicationsFamilyPdu
implements
Serializable
{
{
/**
/**
*
*
*/
*/
protected
IntercomReferenceID
intercomReferenceID
=
new
IntercomReferenceID
();
protected
IntercomReferenceID
intercomReferenceID
=
new
IntercomReferenceID
();
/**
/**
* ID of communications device
* ID of communications device
...
...
This diff is collapsed.
Click to expand it.
src-generated/edu/nps/moves/dis7/SignalPdu.java
+
16
−
7
View file @
e571f876
...
@@ -14,10 +14,10 @@ import edu.nps.moves.dis7.enumerations.*;
...
@@ -14,10 +14,10 @@ import edu.nps.moves.dis7.enumerations.*;
public
class
SignalPdu
extends
RadioCommunicationsFamilyPdu
implements
Serializable
public
class
SignalPdu
extends
RadioCommunicationsFamilyPdu
implements
Serializable
{
{
/**
/**
*
*
*/
*/
protected
RadioCommsHeader
header
=
new
RadioCommsHeader
();
protected
RadioCommsHeader
header
=
new
RadioCommsHeader
();
/**
/**
* encoding scheme used, and enumeration
* encoding scheme used, and enumeration
...
@@ -61,13 +61,12 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -61,13 +61,12 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Returns the size of this serialized object in bytes
* Returns the size of this serialized object in bytes
* @return
*/
*/
@Override
@Override
public
int
getMarshalledSize
()
public
int
getMarshalledSize
()
{
{
int
marshalSize
=
0
;
int
marshalSize
=
super
.
getMarshalledSize
();
marshalSize
=
super
.
getMarshalledSize
();
marshalSize
+=
header
.
getMarshalledSize
();
marshalSize
+=
header
.
getMarshalledSize
();
marshalSize
+=
2
;
// encodingScheme
marshalSize
+=
2
;
// encodingScheme
marshalSize
+=
tdlType
.
getMarshalledSize
();
marshalSize
+=
tdlType
.
getMarshalledSize
();
...
@@ -82,6 +81,8 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -82,6 +81,8 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Setter for {@link SignalPdu#header}
* Setter for {@link SignalPdu#header}
* @param pHeader
* @return
*/
*/
public
SignalPdu
setHeader
(
RadioCommsHeader
pHeader
)
public
SignalPdu
setHeader
(
RadioCommsHeader
pHeader
)
{
{
...
@@ -91,6 +92,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -91,6 +92,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Getter for {@link SignalPdu#header}
* Getter for {@link SignalPdu#header}
* @return
*/
*/
public
RadioCommsHeader
getHeader
()
public
RadioCommsHeader
getHeader
()
{
{
...
@@ -99,6 +101,8 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -99,6 +101,8 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Setter for {@link SignalPdu#encodingScheme}
* Setter for {@link SignalPdu#encodingScheme}
* @param pEncodingScheme
* @return
*/
*/
public
SignalPdu
setEncodingScheme
(
short
pEncodingScheme
)
public
SignalPdu
setEncodingScheme
(
short
pEncodingScheme
)
{
{
...
@@ -108,6 +112,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -108,6 +112,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Getter for {@link SignalPdu#encodingScheme}
* Getter for {@link SignalPdu#encodingScheme}
* @return
*/
*/
public
short
getEncodingScheme
()
public
short
getEncodingScheme
()
{
{
...
@@ -117,6 +122,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -117,6 +122,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Setter for {@link SignalPdu#tdlType}
* Setter for {@link SignalPdu#tdlType}
*
*
* @param pTdlType
* @return this object
* @return this object
*/
*/
public
SignalPdu
setTdlType
(
SignalTDLType
pTdlType
)
public
SignalPdu
setTdlType
(
SignalTDLType
pTdlType
)
...
@@ -127,6 +133,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -127,6 +133,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Getter for {@link SignalPdu#tdlType}
* Getter for {@link SignalPdu#tdlType}
* @return
*/
*/
public
SignalTDLType
getTdlType
()
public
SignalTDLType
getTdlType
()
{
{
...
@@ -136,6 +143,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -136,6 +143,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Setter for {@link SignalPdu#sampleRate}
* Setter for {@link SignalPdu#sampleRate}
*
*
* @param pSampleRate
* @return this object
* @return this object
*/
*/
public
SignalPdu
setSampleRate
(
int
pSampleRate
)
public
SignalPdu
setSampleRate
(
int
pSampleRate
)
...
@@ -146,6 +154,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
...
@@ -146,6 +154,7 @@ public class SignalPdu extends RadioCommunicationsFamilyPdu implements Serializa
/**
/**
* Getter for {@link SignalPdu#sampleRate}
* Getter for {@link SignalPdu#sampleRate}
* @return
*/
*/
public
int
getSampleRate
()
public
int
getSampleRate
()
{
{
...
...
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