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
c301ca53
Commit
c301ca53
authored
3 years ago
by
Brutzman, Don
Browse files
Options
Downloads
Patches
Plain Diff
sort constructors
parent
6a24fe1c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/edu/nps/moves/dis7/utilities/DisThreadedNetworkInterface.java
+25
-25
25 additions, 25 deletions
...nps/moves/dis7/utilities/DisThreadedNetworkInterface.java
with
25 additions
and
25 deletions
src/edu/nps/moves/dis7/utilities/DisThreadedNetworkInterface.java
+
25
−
25
View file @
c301ca53
...
@@ -132,31 +132,6 @@ public class DisThreadedNetworkInterface
...
@@ -132,31 +132,6 @@ public class DisThreadedNetworkInterface
}
}
}
}
/**
* Object constructor using default multicast address and port, no descriptor
*/
public
DisThreadedNetworkInterface
()
{
this
(
DEFAULT_DIS_ADDRESS
,
DEFAULT_DIS_PORT
,
""
);
}
/**
* Object constructor with descriptor, using default multicast address and port
* @param newDescriptor simple descriptor name for this interface
*/
public
DisThreadedNetworkInterface
(
String
newDescriptor
)
{
this
(
DEFAULT_DIS_ADDRESS
,
DEFAULT_DIS_PORT
,
newDescriptor
);
}
/**
* Object constructor using specified multicast address and port
* @param address the multicast group or unicast address to utilize
* @param port the multicast port to utilize
*/
public
DisThreadedNetworkInterface
(
String
address
,
int
port
)
{
this
(
address
,
port
,
""
);
}
/**
/**
* Object constructor using specified multicast address and port, plus descriptor.
* Object constructor using specified multicast address and port, plus descriptor.
* @param address the multicast group or unicast address to utilize
* @param address the multicast group or unicast address to utilize
...
@@ -185,6 +160,31 @@ public class DisThreadedNetworkInterface
...
@@ -185,6 +160,31 @@ public class DisThreadedNetworkInterface
begin
();
begin
();
}
}
/**
* Object constructor using specified multicast address and port
* @param address the multicast group or unicast address to utilize
* @param port the multicast port to utilize
*/
public
DisThreadedNetworkInterface
(
String
address
,
int
port
)
{
this
(
address
,
port
,
""
);
}
/**
* Object constructor with descriptor, using default multicast address and port
* @param newDescriptor simple descriptor name for this interface
*/
public
DisThreadedNetworkInterface
(
String
newDescriptor
)
{
this
(
DEFAULT_DIS_ADDRESS
,
DEFAULT_DIS_PORT
,
newDescriptor
);
}
/**
* Object constructor using default multicast address and port, no descriptor
*/
public
DisThreadedNetworkInterface
()
{
this
(
DEFAULT_DIS_ADDRESS
,
DEFAULT_DIS_PORT
,
""
);
}
/**
/**
* Add a listener to accept only pdus of a given type
* Add a listener to accept only pdus of a given type
...
...
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