com.powsybl.ucte.network.UcteNetwork Maven / Gradle / Ivy
/**
* Copyright (c) 2016, All partners of the iTesla project (http://www.itesla-project.eu/consortium)
* 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/.
* SPDX-License-Identifier: MPL-2.0
*/
package com.powsybl.ucte.network;
import com.powsybl.commons.report.ReportNode;
import java.util.Collection;
import java.util.List;
/**
*
* @author Geoffroy Jamgotchian {@literal }
*/
public interface UcteNetwork {
void setVersion(UcteFormatVersion version);
UcteFormatVersion getVersion();
List getComments();
void addNode(UcteNode node);
Collection getNodes();
UcteNode getNode(UcteNodeCode code);
void addLine(UcteLine line);
Collection getLines();
UcteLine getLine(UcteElementId id);
void addTransformer(UcteTransformer transformer);
Collection getTransformers();
UcteTransformer getTransformer(UcteElementId id);
void addRegulation(UcteRegulation regulation);
Collection getRegulations();
UcteRegulation getRegulation(UcteElementId transfoId);
void fix(ReportNode reportNode);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy