mavenivy-adapters/src/main/java/org/apache/easyant/tasks/adapters/Deploy.java [83:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addTypeMappings(TypeMappings typeMappings) {
        this.typeMappings = typeMappings;
    }

    public TypeMappings getTypeMappings() {
        if (typeMappings == null) {
            // create a default one
            typeMappings = new TypeMappings();
            typeMappings.setProject(getProject());
        }

        return typeMappings;
    }

    public void setTypeMappings(TypeMappings typeMappings) {
        this.typeMappings = typeMappings;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mavenivy-adapters/src/main/java/org/apache/easyant/tasks/adapters/InfoAdapter.java [80:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addTypeMappings(TypeMappings typeMappings) {
        this.typeMappings = typeMappings;
    }

    public TypeMappings getTypeMappings() {
        if (typeMappings == null) {
            // create a default one
            typeMappings = new TypeMappings();
            typeMappings.setProject(getProject());
        }

        return typeMappings;
    }

    public void setTypeMappings(TypeMappings typeMappings) {
        this.typeMappings = typeMappings;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



