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

javadoc

parent 0e647ea5
No related branches found
No related tags found
No related merge requests found
Showing
with 73 additions and 70 deletions
...@@ -10,7 +10,7 @@ package MV3500Cohort2018JanuaryMarch.homework1; ...@@ -10,7 +10,7 @@ package MV3500Cohort2018JanuaryMarch.homework1;
import java.io.*; import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author cs2017 * @author cs2017
*/ */
public class AngelClient { public class AngelClient {
......
...@@ -10,7 +10,7 @@ package MV3500Cohort2018JanuaryMarch.homework1; ...@@ -10,7 +10,7 @@ package MV3500Cohort2018JanuaryMarch.homework1;
import java.io.*; import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author cs2017 * @author cs2017
*/ */
public class AngelServer { public class AngelServer {
......
package MV3500Cohort2018JanuaryMarch.homework1; package MV3500Cohort2018JanuaryMarch.homework1;
/* /*
* To change this license header, choose License Headers in Project Properties. * To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates * To change this template file, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
// no package required or desired, Netbeans will automatically compile // no package required or desired, Netbeans will automatically compile
/** /**
* * homework assignment
* @author cs2017 * @author cs2017
*/ */
public class AngelTank { public class AngelTank {
private String type; private String type;
private int speed; private int speed;
private int[] position; private int[] position;
AngelTank(String type, int i, int[] pos) { AngelTank(String type, int i, int[] pos) {
this.type = type; this.type = type;
this.speed = i; this.speed = i;
this.position = pos; this.position = pos;
} }
/** /**
* @return the type * get current type
*/ * @return the type
public String getType() { */
return type; public String getType() {
} return type;
}
/**
* @return the speed /**
*/ * get current speed
public int getSpeed() { * @return the speed
return speed; */
} public int getSpeed() {
return speed;
/** }
* @return the position
*/ /**
public int[] getPosition() { * get current position
return position; * @return the position
} */
public int[] getPosition() {
return position;
} }
}
...@@ -11,7 +11,7 @@ import java.io.*; ...@@ -11,7 +11,7 @@ import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author Brian * @author Brian
*/ */
public class HanleyTcpClient public class HanleyTcpClient
......
...@@ -9,7 +9,7 @@ import java.io.*; ...@@ -9,7 +9,7 @@ import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasClient1 { public class LandasClient1 {
......
...@@ -11,7 +11,7 @@ import java.io.IOException; ...@@ -11,7 +11,7 @@ import java.io.IOException;
import java.net.Socket; import java.net.Socket;
import java.util.Scanner; import java.util.Scanner;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasClient2 { public class LandasClient2 {
......
...@@ -9,7 +9,7 @@ import java.io.*; ...@@ -9,7 +9,7 @@ import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasServer1 { public class LandasServer1 {
......
...@@ -13,7 +13,7 @@ import java.net.Socket; ...@@ -13,7 +13,7 @@ import java.net.Socket;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasServer2 { public class LandasServer2 {
......
...@@ -5,7 +5,7 @@ package MV3500Cohort2018JanuaryMarch.homework1; ...@@ -5,7 +5,7 @@ package MV3500Cohort2018JanuaryMarch.homework1;
import java.io.*; import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author Jeremiah Sasala * @author Jeremiah Sasala
*/ */
public class SasalaClient { public class SasalaClient {
......
...@@ -5,7 +5,7 @@ package MV3500Cohort2018JanuaryMarch.homework1; ...@@ -5,7 +5,7 @@ package MV3500Cohort2018JanuaryMarch.homework1;
import java.io.*; import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author Jeremiah Sasala * @author Jeremiah Sasala
*/ */
public class SasalaServer { public class SasalaServer {
......
...@@ -10,7 +10,7 @@ import java.net.Socket; ...@@ -10,7 +10,7 @@ import java.net.Socket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
* * homework assignment
* @author AJSNELL * @author AJSNELL
*/ */
public class SnellPositionClient { public class SnellPositionClient {
......
...@@ -7,8 +7,7 @@ import java.io.*; ...@@ -7,8 +7,7 @@ import java.io.*;
import java.net.*; import java.net.*;
/** /**
* * homework assignment
* @author mcgredo
*/ */
public class AngelMulticastReceiver { public class AngelMulticastReceiver {
......
...@@ -14,7 +14,7 @@ import java.net.InetAddress; ...@@ -14,7 +14,7 @@ import java.net.InetAddress;
import java.net.MulticastSocket; import java.net.MulticastSocket;
/** /**
* * homework assignment
* @author Michael * @author Michael
*/ */
public class BlankenbekerMulticastReceiver { public class BlankenbekerMulticastReceiver {
......
...@@ -14,7 +14,7 @@ import java.net.InetAddress; ...@@ -14,7 +14,7 @@ import java.net.InetAddress;
import java.net.MulticastSocket; import java.net.MulticastSocket;
/** /**
* * homework assignment
* @author Michael * @author Michael
*/ */
public class BlankenbekerMulticastSender { public class BlankenbekerMulticastSender {
......
...@@ -8,7 +8,7 @@ package MV3500Cohort2018JanuaryMarch.homework2; ...@@ -8,7 +8,7 @@ package MV3500Cohort2018JanuaryMarch.homework2;
//package mv3500code; //package mv3500code;
/** /**
* * homework assignment
* @author Michael * @author Michael
*/ */
public class BlankenbekerTruck { public class BlankenbekerTruck {
...@@ -33,6 +33,7 @@ public class BlankenbekerTruck { ...@@ -33,6 +33,7 @@ public class BlankenbekerTruck {
} }
/** /**
* *
* get x
* @return X value * @return X value
*/ */
public float getX(){ public float getX(){
...@@ -40,7 +41,7 @@ public class BlankenbekerTruck { ...@@ -40,7 +41,7 @@ public class BlankenbekerTruck {
} }
/** /**
* * get y
* @return Y value * @return Y value
*/ */
public float getY(){ public float getY(){
...@@ -48,7 +49,7 @@ public class BlankenbekerTruck { ...@@ -48,7 +49,7 @@ public class BlankenbekerTruck {
} }
/** /**
* * get z
* @return Z value * @return Z value
*/ */
public float getZ(){ public float getZ(){
......
...@@ -9,7 +9,7 @@ import java.net.InetAddress; ...@@ -9,7 +9,7 @@ import java.net.InetAddress;
import java.net.MulticastSocket; import java.net.MulticastSocket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
* * homework assignment
* @author emilyconard * @author emilyconard
*/ */
public class ConardMulticastReceiver public class ConardMulticastReceiver
......
...@@ -10,7 +10,7 @@ import java.net.MulticastSocket; ...@@ -10,7 +10,7 @@ import java.net.MulticastSocket;
/** /**
* * homework assignment
* @author emilyconard * @author emilyconard
*/ */
public class ConardMulticastSender { public class ConardMulticastSender {
......
...@@ -8,7 +8,7 @@ import java.net.MulticastSocket; ...@@ -8,7 +8,7 @@ import java.net.MulticastSocket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasMulticastReceiver { public class LandasMulticastReceiver {
......
...@@ -8,7 +8,7 @@ import java.net.MulticastSocket; ...@@ -8,7 +8,7 @@ import java.net.MulticastSocket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasMulticastReceiver2 { public class LandasMulticastReceiver2 {
......
...@@ -8,7 +8,7 @@ import java.net.InetAddress; ...@@ -8,7 +8,7 @@ import java.net.InetAddress;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
* * homework assignment
* @author Rico * @author Rico
*/ */
public class LandasMulticastSender { public class LandasMulticastSender {
......
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