Skip to content

Commit

Permalink
Add literal annotation in author's email address (#301)
Browse files Browse the repository at this point in the history
Signed-off-by: Sophie Frasnedo <[email protected]>
  • Loading branch information
So-Fras authored Oct 30, 2023
1 parent f64c6d9 commit 9e5bbd7
Show file tree
Hide file tree
Showing 247 changed files with 286 additions and 286 deletions.
2 changes: 1 addition & 1 deletion commons/src/main/java-templates/PowsyblDynawoVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.powsybl.tools.Version;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
@AutoService(Version.class)
public class PowsyblDynawoVersion extends AbstractVersion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.util.List;

/**
* @author Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
* @author Geoffroy Jamgotchian {@literal <geoffroy.jamgotchian at rte-france.com>}
*/
public final class DynawoConstants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import static com.powsybl.dynawo.commons.DynawoConstants.IIDM_VERSION;

/**
* @author Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
* @author Geoffroy Jamgotchian {@literal <geoffroy.jamgotchian at rte-france.com>}
*/
public final class DynawoUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.stream.Collectors;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
public class DynawoVersion implements Comparable<DynawoVersion> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.stream.Collectors;

/**
* @author Guillem Jané Guasch <janeg at aia.es>
* @author Guillem Jané Guasch {@literal <janeg at aia.es>}
*/
public final class NetworkResultsUpdater {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package com.powsybl.dynawo.commons.loadmerge;

/**
* @author Laurent Isertial <laurent.issertial at rte-france.com>
* @author Laurent Isertial {@literal <laurent.issertial at rte-france.com>}
*/
public enum LoadPowersSigns {
P_POS_Q_POS(".pppq"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import static com.powsybl.dynawo.commons.loadmerge.LoadPowersSigns.*;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Laurent Isertial <laurent.issertial at rte-france.com>
* @author Dimitri Baudrier <dimitri.baudrier at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
* @author Laurent Isertial {@literal <laurent.issertial at rte-france.com>}
* @author Dimitri Baudrier {@literal <dimitri.baudrier at rte-france.com>}
*/
public final class LoadsMerger {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.util.List;

/**
* @author Laurent Isertial <laurent.issertial at rte-france.com>
* @author Laurent Isertial {@literal <laurent.issertial at rte-france.com>}
*/
public class LoadsToMerge {
private static final String MERGE_LOAD_PREFIX_ID = "merged_load_.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.Objects;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
public final class CsvTimeLineParser implements TimeLineParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.List;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
public interface TimeLineParser {
List<TimelineEntry> parse(Path timeLineFile);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.Optional;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
public final class TimeLineUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
package com.powsybl.dynawo.commons.timeline;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
public record TimelineEntry(double time, String modelName, String message) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
import java.util.Objects;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
*/
public final class XmlTimeLineParser implements TimeLineParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import static com.powsybl.commons.test.ComparisonUtils.compareTxt;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
abstract class AbstractDynawoCommonsTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import static org.junit.jupiter.api.Assertions.*;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
class DynawoVersionTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package com.powsybl.dynawo.commons;

/**
* @author Laurent Isertial <laurent.issertial at rte-france.com>
* @author Laurent Isertial {@literal <laurent.issertial at rte-france.com>}
*/
public record LoadState(double p, double q, double p0, double q0) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.List;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
class LoadsMergerTest extends AbstractDynawoCommonsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.nio.file.Path;

/**
* @author Guillem Jané Guasch <janeg at aia.es>
* @author Guillem Jané Guasch {@literal <janeg at aia.es>}
*/
class NetworkResultsUpdaterTest extends AbstractDynawoCommonsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.List;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
public final class TestNetworkFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
import static org.junit.jupiter.api.Assertions.assertThrows;

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
*/
class CsvTimeLineParserTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;

/**
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
*/
class XmlTimeLineParserTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
public class DynaFlowConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import com.fasterxml.jackson.annotation.JsonValue;

/**
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
public final class DynaFlowConstants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import static com.powsybl.dynaflow.DynaFlowProvider.MODULE_SPECIFIC_PARAMETERS;

/**
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
public class DynaFlowParameters extends AbstractExtension<LoadFlowParameters> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
@AutoService(LoadFlowProvider.class)
public class DynaFlowProvider implements LoadFlowProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import static com.powsybl.dynaflow.DynaFlowConstants.IIDM_FILENAME;

/**
* @author Luma Zamarreno <zamarrenolm at aia.es>
* @author Luma Zamarreno {@literal <zamarrenolm at aia.es>}
*/
public class DynaFlowSecurityAnalysis {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import static com.powsybl.dynaflow.DynaFlowConstants.*;

/**
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
*/
@AutoService(SecurityAnalysisProvider.class)
public class DynaFlowSecurityAnalysisProvider implements SecurityAnalysisProvider {
Expand Down
2 changes: 1 addition & 1 deletion dynaflow/src/main/java/com/powsybl/dynaflow/Reports.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import com.powsybl.dynawo.commons.timeline.TimelineEntry;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
public final class Reports {
private static final String TIME_MS = "timeMsTypedValue";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
public final class DynaFlowConfigSerializer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
@AutoService(ExtensionJsonSerializer.class)
public class JsonDynaFlowParametersSerializer implements ExtensionJsonSerializer<LoadFlowParameters, DynaFlowParameters> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import java.util.Optional;

/**
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
public final class ConstraintsReader {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
abstract class AbstractLocalCommandExecutor implements LocalCommandExecutor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;

/**
* @author Florian Dupuy <florian.dupuy at rte-france.com>
* @author Florian Dupuy {@literal <florian.dupuy at rte-france.com>}
*/
class ConstraintsReaderTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
class DynaFlowConfigTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
class DynaFlowParametersTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import static org.junit.jupiter.api.Assertions.*;

/**
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
class DynaFlowProviderTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import static org.junit.jupiter.api.Assertions.*;

/**
* @author Marcos de Miguel <demiguelm at aia.es>
* @author Marcos de Miguel {@literal <demiguelm at aia.es>}
*/
class DynaFlowSecurityAnalysisTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
class DynawoVersionCheckTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
*
* @author Guillaume Pernin <guillaume.pernin at rte-france.com>
* @author Guillaume Pernin {@literal <guillaume.pernin at rte-france.com>}
*/
class JsonDynaFlowParametersSerializerTest extends AbstractConverterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import com.powsybl.iidm.network.Network

import java.util.function.Consumer
/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
abstract class AbstractEquipmentGroovyExtension<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import com.powsybl.iidm.network.Network
import java.util.function.Consumer

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
abstract class AbstractPureDynamicGroovyExtension<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import com.powsybl.iidm.network.Network
import java.util.function.Consumer

/**
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
abstract class AbstractSimpleEquipmentGroovyExtension<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import java.util.function.Function
/**
* Represents an equipment field identified by a static ID in the groovy script
* Verifies if the corresponding equipment with the specified type exists, log the error otherwise
* @author Laurent Issertial <laurent.issertial at rte-france.com>
* @author Laurent Issertial {@literal <laurent.issertial at rte-france.com>}
*/
class DslEquipment<T extends Identifiable> {

Expand Down
Loading

0 comments on commit 9e5bbd7

Please sign in to comment.