-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShipCommand.java
82 lines (74 loc) · 1.88 KB
/
ShipCommand.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* Write a description of class ShipCommand here.
*
* @author Jerrett Fowler
* @version 1.0 (August 2013)
*/
public class ShipCommand extends Command
{
// instance variables - replace the example below with your own
private String name = "SHIP";
/**
* Constructor for objects of class ShipCommand
*/
public ShipCommand()
{
//
}
/**
* ''BATTLESHIP'' | ''DESTROYER1'' | ''SUBMARINE1''
* | ''SUBMARINE2'' | ''SUBMARINE3'' | ''DESTROYER2''
* @param y a sample parameter for a method
* @return the sum of x and y
*/
@Override
public boolean execute(Object o)
{
Ship s = null;
s = (Ship)o;
if(getSecondWord() == null)
{
if(s.getShipID().equals("SUBMARINE1"))
{
System.out.println("SUBMARINE1");
}
else if(s.getShipID().equals("SUBMARINE2"))
{
System.out.println("SUBMARINE2");
}
else if(s.getShipID().equals("SUBMARINE3"))
{
System.out.println("SUBMARINE3");
}
else if(s.getShipID().equals("BATTLESHIP1"))
{
System.out.println("BATTLESHIP1.");
}
else if(s.getShipID().equals("DESTROYER1"))
{
System.out.println("DESTROYER1");
}
else if(s.getShipID().equals("DESTROYER2"))
{
System.out.println("DESTROYER2");
}
else
{
System.out.println("No such ship name.");
return false;
}
}
else
{
}
return true;
}
/**
* Return String of name of command
*/
@Override
public String getName()
{
return name;
}
}