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