Skip to content

Package: DetailBarVisitor

DetailBarVisitor

Coverage

1: package networkconfigurator;
2:
3: import java.awt.Component;
4:
5: import model.assignment.VariableAssignment;
6:
7: /**
8: *
9: * @author HFW416 Jannik
10: *
11: */
12: public interface DetailBarVisitor {
13:         /**
14:          * @param detailBarLabel
15:          * the value to be displayed.
16:          * @return returns the create JComponent.
17:          */
18:         Component visit(DetailBarLabel detailBarLabel);
19:
20:         /**
21:          * @param variableAssignment
22:          * the value to binding.
23:          * @return returns the create JComponent.
24:          */
25:         Component visit(VariableAssignment variableAssignment);
26:
27:         /**
28:          * @param detailBarInputBox
29:          * the value to binding.
30:          * @return returns the create JComponent.
31:          */
32:         Component visit(DetailInputBox detailBarInputBox);
33: }