com.powsybl.afs.ext.base.ModificationScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-afs-ext-base Show documentation
Show all versions of powsybl-afs-ext-base Show documentation
A set of AFS extension classes
/**
* Copyright (c) 2017, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.powsybl.afs.ext.base;
import com.powsybl.afs.ProjectFileCreationContext;
/**
* @author Geoffroy Jamgotchian
*/
public class ModificationScript extends AbstractScript {
public static final String PSEUDO_CLASS = "modificationScript";
public static final int VERSION = 0;
static final String SCRIPT_TYPE = "scriptType";
static final String SCRIPT_CONTENT = "scriptContent";
public ModificationScript(ProjectFileCreationContext context) {
super(context, VERSION, SCRIPT_CONTENT);
}
@Override
public String getScriptLabel() {
return null;
}
public ScriptType getScriptType() {
return ScriptType.valueOf(info.getGenericMetadata().getString(SCRIPT_TYPE));
}
}