Skip to content

Commit

Permalink
BUILD SUCCESS
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazar committed Jul 28, 2023
1 parent e269c77 commit 548668e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/core/basesyntax/Bulldozer.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package core.basesyntax;

public class Bulldozer extends Machine {
@Override
public void doWork() {
System.out.println("Bulldozer machine started its work");
}

@Override
public void stopWork() {
System.out.println("Bulldozer machine stopped its work");
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/core/basesyntax/Excavator.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package core.basesyntax;

public class Excavator extends Machine {
@Override
public void doWork() {
System.out.println("Excavator machine started its work");
}

@Override
public void stopWork() {
System.out.println("Excavator machine stopped its work");
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/core/basesyntax/Machine.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package core.basesyntax;

public abstract class Machine {

public abstract void doWork();

public abstract void stopWork();
}
1 change: 1 addition & 0 deletions src/main/java/core/basesyntax/MainApp.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package core.basesyntax;

public class MainApp {
public static void main(String[] args) {
Machine truck = new Truck();
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/core/basesyntax/Truck.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package core.basesyntax;

public class Truck extends Machine {
@Override
public void doWork() {
System.out.println("Truck machine started its work");
}

@Override
public void stopWork() {
System.out.println("Truck machine stopped its work");
Expand Down

0 comments on commit 548668e

Please sign in to comment.