Commit 7dc1e8e7dffe3e652a73808707b8989e5a27ceee

Authored by Kevin Mach
1 parent 7e2b9343c2
Exists in master

added drop class

Showing 2 changed files with 19 additions and 1 deletions Side-by-side Diff

1 1 PNGS = built/use_cases_diagram.png built/schema_diagram.png built/schema_graph.png
2 2 PDFS = built/DesignUseCases.pdf built/screen_sequence_diagram.pdf
3   -SCREEN_SEQUENCE_PNGS = built/add_class.png
  3 +SCREEN_SEQUENCE_PNGS = built/add_class.png built/drop_class.png
4 4  
5 5 all: built/ $(PNGS) $(PDFS)
6 6  
screen_sequence_diagrams/drop_class.dot View file @ 7dc1e8e
  1 +digraph G{
  2 + ratio=0.75;
  3 + //rankdir="LR";
  4 + node[shape = box];
  5 + //splines=ortho;
  6 + nodesep=1.4;
  7 + "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"];
  8 + "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond];
  9 + "User Check"[center=true, fillcolor="#aaaaff", style=filled];
  10 + //labelfloat=true;
  11 + //lp=100;
  12 +
  13 + "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond];
  14 + "Sidebar Menu" -> "Controller" [label="DELETE"];
  15 + "Controller" -> "User Check";
  16 + "User Check"-> "Sidebar Menu"[label="User successfully dropped class"];
  17 + "User Check"-> "Sidebar Menu"[label="User did not drop class"];
  18 +}