From 7549f9e5025da538143ee41d76174061b266cbf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Mon, 25 Apr 2016 21:52:55 +0200 Subject: [PATCH] Implemented listStargates --- cicaprojekt/Tester.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cicaprojekt/Tester.java b/cicaprojekt/Tester.java index c42a098..2e2b6d4 100644 --- a/cicaprojekt/Tester.java +++ b/cicaprojekt/Tester.java @@ -78,6 +78,13 @@ public class Tester { } } + void listStargates() { + System.out.println(Stargate.blueStargate); + System.out.println(Stargate.yellowStargate); + System.out.println(Stargate.redStargate); + System.out.println(Stargate.greenStargate); + } + /* custom Test annotation */ @Target(ElementType.METHOD) // it's for methods @Retention(RetentionPolicy.RUNTIME) // we want to retain annotations in runtime