xbean-blueprint/src/main/java/org/apache/xbean/blueprint/generator/AttributeMapping.java [34:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public AttributeMapping(String attributeName, String propertyName, String description, Type type, String value, boolean fixed, boolean required, String propertyEditor) {
        this.propertyEditor = propertyEditor;
		if (attributeName == null) throw new NullPointerException("attributeName");
        if (propertyName == null) throw new NullPointerException("propertyName");
        if (type == null) throw new NullPointerException("type");
        this.attributeName = attributeName;
        this.propertyName = propertyName;
        if (description == null) description = "";
        this.description = description;
        this.type = type;
        this.value = value;
        this.fixed = fixed;
        this.required = required;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xbean-spring/src/main/java/org/apache/xbean/spring/generator/AttributeMapping.java [34:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public AttributeMapping(String attributeName, String propertyName, String description, Type type, String value, boolean fixed, boolean required, String propertyEditor) {
        this.propertyEditor = propertyEditor;
		if (attributeName == null) throw new NullPointerException("attributeName");
        if (propertyName == null) throw new NullPointerException("propertyName");
        if (type == null) throw new NullPointerException("type");
        this.attributeName = attributeName;
        this.propertyName = propertyName;
        if (description == null) description = "";
        this.description = description;
        this.type = type;
        this.value = value;
        this.fixed = fixed;
        this.required = required;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



