diff --git a/src/main/java/program/main/Pipe.java b/src/main/java/program/main/Pipe.java index 9bbdd9f..084746e 100644 --- a/src/main/java/program/main/Pipe.java +++ b/src/main/java/program/main/Pipe.java @@ -13,6 +13,8 @@ public class Pipe extends Field { int x2; int y2; + String nif = "Nincs ilyen függvénye: "; + /** * Megadja, hogy a csőben van-e víz. */ @@ -233,7 +235,7 @@ public Pump otherEnd(Pump p) { */ @Override public void setNewPump(Pump p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.setNewPump()"); + throw new UnsupportedOperationException(nif + "Pipe.setNewPump()"); } /** @@ -243,7 +245,7 @@ public void setNewPump(Pump p) { */ @Override public boolean getNewPump() { - throw new UnsupportedOperationException("Nincs ilyen függvénye" + "Pipe.getNewPump()"); + throw new UnsupportedOperationException(nif + "Pipe.getNewPump()"); } /** @@ -290,7 +292,7 @@ public void turn() { @Override public ArrayList listNeighbours() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.listNeighbours()"); + throw new UnsupportedOperationException(nif + "Pipe.listNeighbours()"); } @@ -302,7 +304,7 @@ public ArrayList listNeighbours() { @Override public void removePipe(Pipe p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.removePipe()"); + throw new UnsupportedOperationException(nif + "Pipe.removePipe()"); } /** @@ -312,7 +314,7 @@ public void removePipe(Pipe p) { */ @Override public void connectPipe(Pipe p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.connectPipe()"); + throw new UnsupportedOperationException(nif + "Pipe.connectPipe()"); } @@ -324,7 +326,7 @@ public void connectPipe(Pipe p) { @Override public void changePipeIn(Pipe p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.changePipeIn()"); + throw new UnsupportedOperationException(nif + "Pipe.changePipeIn()"); } @@ -335,7 +337,7 @@ public void changePipeIn(Pipe p) { */ @Override public void changePipeOut(Pipe p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.changePipeOut()"); + throw new UnsupportedOperationException(nif + "Pipe.changePipeOut()"); } @@ -347,7 +349,7 @@ public void changePipeOut(Pipe p) { @Override public void setNewPipe(Pipe p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.setNewPipe()"); + throw new UnsupportedOperationException(nif + "Pipe.setNewPipe()"); } /** @@ -358,7 +360,7 @@ public void setNewPipe(Pipe p) { @Override public Pipe getNewPipe() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getNewPipe()"); + throw new UnsupportedOperationException(nif + "Pipe.getNewPipe()"); } @@ -368,7 +370,7 @@ public Pipe getNewPipe() { @Override public int SpareWater() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.SpareWater()"); + throw new UnsupportedOperationException(nif + "Pipe.SpareWater()"); } @@ -392,7 +394,7 @@ public ArrayList getConnectedPumps() { */ public ArrayList getConnectedPipes() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getConnectedPipes()"); + throw new UnsupportedOperationException(nif + "Pipe.getConnectedPipes()"); } /** @@ -516,23 +518,23 @@ public void setWater(boolean state) { public void removeNeighour(Pump p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.removeNeighour()"); + throw new UnsupportedOperationException(nif + "Pipe.removeNeighour()"); } public void addNeighour(Pump p) { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.addNeighour()"); + throw new UnsupportedOperationException(nif + "Pipe.addNeighour()"); } public void addWater() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.addWater()"); + throw new UnsupportedOperationException(nif + "Pipe.addWater()"); } public Pipe getPipeIn() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getPipeIn()"); + throw new UnsupportedOperationException(nif + "Pipe.getPipeIn()"); } public Pipe getPipeOut() { - throw new UnsupportedOperationException("Nincs ilyen függvénye: " + "Pipe.getPipeOut()"); + throw new UnsupportedOperationException(nif + "Pipe.getPipeOut()"); } /** diff --git a/target/classes/program/main/Pipe.class b/target/classes/program/main/Pipe.class index c866716..5549b4c 100644 Binary files a/target/classes/program/main/Pipe.class and b/target/classes/program/main/Pipe.class differ