Package: ConfigurationCategoryWrapper
ConfigurationCategoryWrapper
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ConfigurationCategoryWrapper() | 
 | 
 | 
 | 
 | 
 | ||||||||||||||||||||
| accept(TreeElementVisitor) | 
 | 
 | 
 | 
 | 
 | ||||||||||||||||||||
| toString() | 
 | 
 | 
 | 
 | 
 | ||||||||||||||||||||
Coverage
1: package gui.wrapperobjects;
2: 
3: import basic.GuiConstants;
4: 
5: /**
6:  * Wrapper class for the configuration category.
7:  */
8: public class ConfigurationCategoryWrapper implements TreeElement {
9:         /**
10:          * The ConfigurationCategoryWrapper constructor.
11:          */
12:         public ConfigurationCategoryWrapper() {
13:         }
14: 
15:         @Override
16:         public String toString() {
17:                 return GuiConstants.CONFIGURATIONSTEXT;
18:         }
19: 
20:         @Override
21:         public void accept(final TreeElementVisitor vis) {
22:                 vis.visit(this);
23:         }
24: }