View Javadoc

1   package ch.qos.logback.core.joran.action;
2   
3   import ch.qos.logback.core.util.ContainmentType;
4   import ch.qos.logback.core.util.PropertySetter;
5   
6   public class ImplicitActionData {
7     PropertySetter parentBean;
8     String propertyName;
9     Object nestedComponent;
10    ContainmentType containmentType;
11    boolean inError;
12  
13    ImplicitActionData(PropertySetter parentBean, ContainmentType containmentType) {
14      this.parentBean = parentBean;
15      this.containmentType = containmentType;
16    }
17  }