Skip to content
Snippets Groups Projects
Commit a566f60d authored by brutzman's avatar brutzman
Browse files

javadoc cleanups

parent 3d320cac
No related branches found
No related tags found
No related merge requests found
Showing
with 27 additions and 22 deletions
......@@ -71,7 +71,12 @@
-->
<target name="view.gitlab.assignments" description="view gitlab MV3500 examples in web browser (via Netbeans only)">
<target name="view.javadoc" description="view MV3500 assignments javadoc in web browser (via Netbeans only)">
<echo message="dist/javadoc/index.html"/>
<nbbrowse url="dist/javadoc/index.html"/>
</target>
<target name="view.gitlab.assignments" description="view gitlab MV3500 assignments in web browser (via Netbeans only)">
<echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/>
<nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/>
</target>
......
......@@ -16,7 +16,7 @@ import java.net.*;
public class AngelClient {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args)
{
......
......@@ -16,7 +16,7 @@ import java.net.*;
public class AngelServer {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
......
......@@ -18,7 +18,7 @@ import java.net.*;
* If you're sophisticated you can contact the instructor's computer
* while running this program.
*
* telnet <ipOfServersLaptop> 2317
* telnet [ipAddressOfServerLaptop] 2317
*
* And have him display the socket pairs he got.
* @author mcgredo
......
......@@ -27,7 +27,7 @@ public class HanleyTcpServer {
* If you're sophisticated you can contact the instructor's computer
* while running this program.
*
* telnet <ipOfServersLaptop> 2317
* telnet [ipAddressOfServerLaptop] 2317
*
* And have him display the socket pairs he got.
* @author mcgredo
......
......@@ -15,7 +15,7 @@ import java.net.*;
public class LandasClient1 {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
......
......@@ -20,7 +20,7 @@ public class LandasClient2 {
public static DataOutputStream out;
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
......
......@@ -15,7 +15,7 @@ import java.net.*;
public class LandasServer1 {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
......
......@@ -22,7 +22,7 @@ public class LandasServer2 {
public static DataOutputStream out;
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
......
......@@ -24,7 +24,7 @@ import java.util.Arrays;
* If you're sophisticated you can contact the instructor's computer
* while running this program.
*
* telnet <ipOfServersLaptop> 2317
* telnet [ipAddressOfServerLaptop] 2317
*
* And have him display the socket pairs he got.
* @author mcgredo
......
......@@ -11,7 +11,7 @@ import java.net.*;
public class SasalaClient {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
......
......@@ -11,7 +11,7 @@ import java.net.*;
public class SasalaServer {
/**
* @param args the command line arguments
* @param args command-line arguments
*/
public static void main(String[] args) {
......
......@@ -15,7 +15,7 @@ import java.net.UnknownHostException;
*/
public class SnellPositionClient {
/**
* @param args the command line arguments
* @param args command-line arguments
* @throws java.io.IOException
*/
public static void main(String[] args) throws IOException {
......
......@@ -11,7 +11,7 @@ import java.io.PrintWriter;
public class SnellPositionServer {
/**
* @param args the command line arguments
* @param args command-line arguments
* @throws java.io.IOException
*/
public static void main(String[] args) throws IOException {
......
......@@ -20,7 +20,7 @@ import java.net.*;
* If you're sophisticated you can contact the instructor's computer
* while running this program.
*
* telnet <ipOfServersLaptop> 2317
* telnet [ipAddressOfServerLaptop] 2317
*
* And have him display the socket pairs he got.
* @author mcgredo
......
......@@ -34,7 +34,7 @@ public class Angel_OpenDisEspduSender
* calculator, for example http://www.remotemonitoringsystems.ca/broadcast.php
* If in multicast mode, a join() will be done on the multicast address.
* port: port used for both source and destination.
* @param args
* @param args command-line arguments
*/
public static void main(String args[])
{
......
......@@ -25,7 +25,7 @@ public class BlankenbekerOpenDisEspduSender
/** Default multicast group address we send on */
public static final String DEFAULT_MULTICAST_GROUP="239.1.2.3";
private static final ArrayList <Float[]> track = new ArrayList<>();
public static final ArrayList <Float[]> track = new ArrayList<>();
/** Default port we send on */
public static final int DIS_DESTINATION_PORT = 3000;
......@@ -37,7 +37,7 @@ public class BlankenbekerOpenDisEspduSender
* calculator, for example http://www.remotemonitoringsystems.ca/broadcast.php
* If in multicast mode, a join() will be done on the multicast address.
* port: port used for both source and destination.
* @param args
* @param args command-line arguments
*/
public static void main(String args[])
{
......
......@@ -34,7 +34,7 @@ public class ConardSnellOpenDisEspduSender
* calculator, for example http://www.remotemonitoringsystems.ca/broadcast.php
* If in multicast mode, a join() will be done on the multicast address.
* port: port used for both source and destination.
* @param args
* @param args command-line arguments
*/
public static void main(String args[])
{
......
......@@ -34,7 +34,7 @@ public class Hanley_OpenDisEspduSender
* calculator, for example http://www.remotemonitoringsystems.ca/broadcast.php
* If in multicast mode, a join() will be done on the multicast address.
* port: port used for both source and destination.
* @param args
* @param args command-line arguments
*/
public static void main(String args[])
{
......
......@@ -27,7 +27,7 @@ public class Landas_OpenDisEspduSender
/** Default port we send on */
public static final int DIS_DESTINATION_PORT = 3000;
private static final ArrayList <Float[]> track_coordinates = new ArrayList<>();
public static final ArrayList <Float[]> track_coordinates = new ArrayList<>();
/** Possible system properties, passed in via -Dattr=val
* networkMode: unicast, broadcast, multicast
......@@ -36,7 +36,7 @@ public class Landas_OpenDisEspduSender
* calculator, for example http://www.remotemonitoringsystems.ca/broadcast.php
* If in multicast mode, a join() will be done on the multicast address.
* port: port used for both source and destination.
* @param args
* @param args command-line arguments
*/
public static void main(String args[])
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment