OpticFusion1/Kitsune

implement arg support e.g. /MIN

Closed this issue · 0 comments

implement arg support e.g. /MIN

package optic_fusion1.kitsune.parser.impl.batch.domain;

import optic_fusion1.kitsune.parser.impl.vbs.domain.Statement;

// TODO: implement arg support e.g. /MIN
public class StartStatement extends Statement {

    private String file;

    public StartStatement(String file) {
        this.file = file;
    }
    
    public String getFile() {
        return file;
    }

}

faaa72a8336b04372073cd13bcbd5c80e5b5a13d