javadoc
This commit is contained in:
@@ -2,7 +2,7 @@ package eu.arcadex.system.build_sequence.api;
|
||||
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public enum IBuildCommand {
|
||||
INH(false, 1), // Disable or enable Build file inheritance
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package eu.arcadex.system.build_sequence.api;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public interface IBuildEnvironment {
|
||||
void add(String from, String to);
|
||||
|
||||
@@ -3,7 +3,7 @@ package eu.arcadex.system.build_sequence.api;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public interface IBuildFile {
|
||||
LinkedList<IBuildStep> getCommands();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package eu.arcadex.system.build_sequence.api;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public interface IBuildStep {
|
||||
void execute(IBuildEnvironment impl) throws Exception;
|
||||
|
||||
@@ -6,7 +6,7 @@ import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public class BuildEnvironment implements IBuildEnvironment {
|
||||
private Map<String, String> replaces = new HashMap<>();
|
||||
|
||||
@@ -6,7 +6,7 @@ import eu.arcadex.system.build_sequence.api.*;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public class BuildSequence implements IBuildSequence {
|
||||
private LinkedList<IBuildStep> buildSteps;
|
||||
|
||||
@@ -12,7 +12,7 @@ import java.io.File;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public class BuildStep implements IBuildStep {
|
||||
private IBuildCommand command;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package eu.arcadex.system.build_sequence.implementation;
|
||||
|
||||
/**
|
||||
* Created by Daniil on 08.02.2016.
|
||||
* @author Daniil on 08.04.16.
|
||||
*/
|
||||
public class MalformedBuildFileException extends Exception {
|
||||
public MalformedBuildFileException(String message) {
|
||||
|
||||
Reference in New Issue
Block a user