All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aaronicsubstances.code.augmentor.ant.AugCodeDirectiveSpec Maven / Gradle / Ivy

package com.aaronicsubstances.code.augmentor.ant;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class AugCodeDirectiveSpec {
    private File destFile;
    private final List directives = new ArrayList<>();

    public File getDestFile() {
        return destFile;
    }

    public void setDestFile(File destFile) {
        this.destFile = destFile;
    }

    public List getDirectives() {
        return directives;
    }

    public void addConfiguredDirective(Directive d) {
        String val = null;
        if (d.getValue() != null) {
            val = d.getValue();
        }
        directives.add(val);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy