xbean-blueprint/src/main/java/org/apache/xbean/blueprint/generator/AttributeMapping.java [24:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class AttributeMapping implements Comparable {
    private final String attributeName;
    private final String propertyName;
    private final String description;
    private final Type type;
    private final String value;
    private final boolean fixed;
    private final boolean required;
	private final String propertyEditor;

    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;
    }

    public String getAttributeName() {
        return attributeName;
    }

    public String getPropertyName() {
        return propertyName;
    }

    public String getDescription() {
        return description;
    }

    public Type getType() {
        return type;
    }

    public String getValue() {
        return value;
    }

    public boolean isFixed() {
        return fixed;
    }

    public boolean isRequired() {
        return required;
    }

    public int hashCode() {
        return attributeName.hashCode();
    }

    public boolean equals(Object obj) {
        if (obj instanceof AttributeMapping) {
            return attributeName.equals(((AttributeMapping) obj).attributeName);
        }
        return false;
    }

    public int compareTo(Object obj) {
        return attributeName.compareTo(((AttributeMapping) obj).attributeName);
    }

	public String getPropertyEditor() {
		return propertyEditor;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xbean-spring/src/main/java/org/apache/xbean/spring/generator/AttributeMapping.java [24:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class AttributeMapping implements Comparable {
    private final String attributeName;
    private final String propertyName;
    private final String description;
    private final Type type;
    private final String value;
    private final boolean fixed;
    private final boolean required;
	private final String propertyEditor;

    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;
    }

    public String getAttributeName() {
        return attributeName;
    }

    public String getPropertyName() {
        return propertyName;
    }

    public String getDescription() {
        return description;
    }

    public Type getType() {
        return type;
    }

    public String getValue() {
        return value;
    }

    public boolean isFixed() {
        return fixed;
    }

    public boolean isRequired() {
        return required;
    }

    public int hashCode() {
        return attributeName.hashCode();
    }

    public boolean equals(Object obj) {
        if (obj instanceof AttributeMapping) {
            return attributeName.equals(((AttributeMapping) obj).attributeName);
        }
        return false;
    }

    public int compareTo(Object obj) {
        return attributeName.compareTo(((AttributeMapping) obj).attributeName);
    }

	public String getPropertyEditor() {
		return propertyEditor;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



