Skip to content
Snippets Groups Projects
Commit be61f7e5 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

fix javadoc warnings

parent aa50ca1f
No related branches found
No related tags found
No related merge requests found
Showing
with 155 additions and 18 deletions
......@@ -21,7 +21,7 @@ public class AngelClient
*/
public AngelClient ()
{
// default initializations occur
// default initializations occur here
}
/**
......
......@@ -21,7 +21,7 @@ public class AngelServer
*/
public AngelServer ()
{
// default initializations occur
// default initializations occur here
}
/**
......
......@@ -28,7 +28,7 @@ public class BlankenbekerMyTcpClient
*/
public BlankenbekerMyTcpClient ()
{
// default initializations occur
// default initializations occur here
}
/**
......
......@@ -31,7 +31,7 @@ public class BlankenbekerMyTcpServer
*/
public BlankenbekerMyTcpServer ()
{
// default initializations occur
// default initializations occur here
}
/** run the program
* @param args command-line arguments, string parameters (unused) */
......
......@@ -16,6 +16,14 @@ import java.net.*;
*/
public class HanleyTcpClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public HanleyTcpClient ()
{
// default initializations occur here
}
/** run the program
* @param args command-line arguments, string parameters (unused) */
public static void main(String[] args)
......
......@@ -26,7 +26,16 @@ import java.net.*;
* And have him display the socket pairs he got.
* @author Brian
*/
public class HanleyTcpServer {
public class HanleyTcpServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public HanleyTcpServer ()
{
// default initializations occur here
}
/**
* Program invocation, execution starts here
......
......@@ -12,7 +12,16 @@ import java.net.*;
* homework assignment
* @author Rico
*/
public class LandasClient1 {
public class LandasClient1
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public LandasClient1 ()
{
// default initializations occur here
}
/**
* Program invocation, execution starts here
......
......@@ -14,7 +14,16 @@ import java.util.Scanner;
* homework assignment
* @author Rico
*/
public class LandasClient2 {
public class LandasClient2
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public LandasClient2 ()
{
// default initializations
}
static DataInputStream in;
static DataOutputStream out;
......
......@@ -12,7 +12,16 @@ import java.net.*;
* homework assignment
* @author Rico
*/
public class LandasServer1 {
public class LandasServer1
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public LandasServer1 ()
{
// default initializations occur here
}
/**
* Program invocation, execution starts here
......
......@@ -16,7 +16,16 @@ import java.net.Socket;
* homework assignment
* @author Rico
*/
public class LandasServer2 {
public class LandasServer2
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public LandasServer2 ()
{
// default initializations occur here
}
static DataInputStream in;
static DataOutputStream out;
......
......@@ -22,7 +22,16 @@ import java.util.Scanner;
*
* @author mcgredo
*/
public class MaroonTcpClient {
public class MaroonTcpClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public MaroonTcpClient ()
{
// default initializations
}
static DataInputStream input;
static DataOutputStream output;
......
......@@ -29,8 +29,16 @@ import java.util.Arrays;
* And have him display the socket pairs he got.
* @author mcgredo
*/
public class MaroonTcpServer
public class MaroonTcpServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public MaroonTcpServer ()
{
// default initializations
}
static DataInputStream input;
static DataOutputStream output;
......
......@@ -8,7 +8,16 @@ import java.net.*;
* homework assignment
* @author Jeremiah Sasala
*/
public class SasalaClient {
public class SasalaClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public SasalaClient ()
{
// default initializations
}
/**
* Program invocation, execution starts here
......
......@@ -8,7 +8,16 @@ import java.net.*;
* homework assignment
* @author Jeremiah Sasala
*/
public class SasalaServer {
public class SasalaServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public SasalaServer ()
{
// default initializations
}
/**
* Program invocation, execution starts here
......
......@@ -13,7 +13,16 @@ import java.net.UnknownHostException;
* homework assignment
* @author AJSNELL
*/
public class SnellPositionClient {
public class SnellPositionClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public SnellPositionClient ()
{
// default initializations
}
/**
* Program invocation, execution starts here
* @param args command-line arguments
......
......@@ -10,7 +10,16 @@ import java.net.Socket;
import java.io.PrintWriter;
/** Program description goes here */
public class SnellPositionServer {
public class SnellPositionServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public SnellPositionServer ()
{
// default initializations
}
/**
* Program invocation, execution starts here
* @param args command-line arguments
......
......@@ -4,7 +4,6 @@ package MV3500Cohort2018JanuaryMarch.homework1;
import java.net.Socket;
import java.io.*;
import java.net.*;
/**
* Before, we always used telnet to connect to the server. We are now writing
......@@ -16,8 +15,16 @@ import java.net.*;
*
* @author mcgredo
*/
public class TackettTcpClient
public class TackettTcpClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public TackettTcpClient ()
{
// default initializations
}
/** socket parameter of interest */
public final static String LOCALHOST = "localhost";
//String can also be IPV4 127.0.0.1 or IPV6 0:0:0:0:0:0:0:1
......
......@@ -27,6 +27,14 @@ import java.net.*;
*/
public class TackettTcpServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public TackettTcpServer ()
{
// default initializations
}
/** run the program
* @param args command-line arguments, string parameters (unused) */
public static void main(String[] args)
......
......@@ -15,6 +15,14 @@ import java.net.*;
*/
public class YamashitaDeMouraTcpClient
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public YamashitaDeMouraTcpClient ()
{
// default initializations
}
/** run the program
* @param args command-line arguments, string parameters (unused) */
public static void main(String[] args)
......
......@@ -15,8 +15,16 @@ import java.net.*;
* @version 20180212
*
*/
public class YamashitaDeMouraTcpServer
public class YamashitaDeMouraTcpServer
{
/**
* Default constructor to silence javadoc warning
* @see <a href="https://stackoverflow.com/questions/4488716/java-default-constructor">StackOverflow: Java default constructor</a>
*/
public YamashitaDeMouraTcpServer ()
{
// default initializations
}
/** run the program
* @param args command-line arguments, string parameters (unused) */
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