diff --git a/src/main/java/ui/window/JFrameAI.java b/src/main/java/ui/window/JFrameAI.java index cbed87d77cadf83712e998a515155691d043a61d..955b5fd7fc1bab57f13b527b9171185c082c3e4c 100644 --- a/src/main/java/ui/window/JFrameAI.java +++ b/src/main/java/ui/window/JFrameAI.java @@ -96,6 +96,8 @@ public class JFrameAI extends JFrame implements ActionListener { "Attack Tree Generator, Pipeline 1 - Creates five Attack Tree diagrams that model five different " + "possible exploitations on a provided system specification.", "Attack Tree Generator, Pipeline 2 - Creates an Attack Tree diagram that models a possible exploitation " + + "on a provided system specification using a provided attack pattern.", + "Attack Tree Generator, Pipeline 3 - Creates an Attack Tree diagram that models a possible exploitation " + "on a provided system specification using a provided attack pattern." }; @@ -105,7 +107,7 @@ public class JFrameAI extends JFrame implements ActionListener { "AIBlockConnAttrib", "AIBlockConnAttribWithSlicing", "AISoftwareBlock", "AIStateMachine", "AIStateMachinesAndAttributes", "AIAmulet", "AIDiagramCoherency", "AIDiagramCoherencyWithFormalRules", - "CAPECTracer", "AIAttackPatternTree1", "AIAttackPatternTree2" + "CAPECTracer", "AIAttackPatternTree1", "AIAttackPatternTree2", "AIAttackPatternTree3" }; private static String[] INFOS = { @@ -132,7 +134,8 @@ public class JFrameAI extends JFrame implements ActionListener { "would need to take to exploit five different identified root attacks on the given system specification.", "Using a provided system specification and an attack pattern, create an Attack Tree diagram that " + "models the steps that an attacker would need to take to exploit the given attack pattern " + - "on the given system specifications." + "on the given system specifications.", + "Test pipeline" }; protected JComboBox<String> listOfPossibleActions;