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

com.harium.etyl.core.loadstack.LoadAction Maven / Gradle / Ivy

The newest version!
package com.harium.etyl.core.loadstack;

import com.harium.etyl.layer.StaticLayer;

/**
 * Created by death on 6/23/17.
 */

public abstract class LoadAction {
    protected StaticLayer layer;
    protected LoadActionType type;

    public LoadAction(StaticLayer layer, LoadActionType type) {
        this.layer = layer;
        this.type = type;
    }

    public abstract void apply();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy