From 4d49c23ba542e0eacb679d911a523cd9bf4a3712 Mon Sep 17 00:00:00 2001 From: Simon Urli Date: Tue, 30 May 2017 15:00:14 +0200 Subject: [PATCH] doc: update examples links from gforge.inria.fr to github.com (#1226) close #1185 --- doc/examples.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/examples.md b/doc/examples.md index f9022ac0af4..f100272210b 100644 --- a/doc/examples.md +++ b/doc/examples.md @@ -5,7 +5,7 @@ keywords: examples ## Program Analysis -The [`CatchProcessor`](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/analysis/processing/CatchProcessor.java?view=markup&root=spoon) detects empty catch blocks. +The [`CatchProcessor`](https://github.com/SpoonLabs/spoon-examples/blob/master/src/main/java/fr/inria/gforge/spoon/analysis/CatchProcessor.java) detects empty catch blocks. The [`ReferenceProcessor`](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/analysis/processing/ReferenceProcessor.java?view=markup&root=spoon) detects circular references between packages. @@ -13,9 +13,11 @@ This [`Factory`](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src ## Program Transformation -The [`NotNullProcessor`](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/notnull/NotNullCheckAdderProcessor.java?view=markup&root=spoon) adds a not-null check for all method parameters. +The [`NotNullProcessor`](https://github.com/SpoonLabs/spoon-examples/blob/master/src/main/java/fr/inria/gforge/spoon/transformation/NotNullCheckAdderProcessor.java) adds a not-null check for all method parameters. -The [`MutationProcessor`](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/mutation/MutationProcessor.java?view=markup&root=spoon) randomly mutates some parts of the abstract syntax tree for [mutation testing](http://en.wikipedia.org/wiki/Mutation_testing). +The [`LogProcessor`](https://github.com/SpoonLabs/spoon-examples/blob/master/src/main/java/fr/inria/gforge/spoon/transformation/LogProcessor.java) adds a log information when entering a method. + +The [`MutationProcessor`](https://github.com/SpoonLabs/spoon-examples/tree/master/src/main/java/fr/inria/gforge/spoon/mutation) randomly mutates some parts of the abstract syntax tree for [mutation testing](http://en.wikipedia.org/wiki/Mutation_testing). ## Annotation Processing @@ -29,4 +31,4 @@ The [Field Access example](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-ex ## Miscelanous -The [Distributed Calculus example](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/distcalc/?root=spoon) creates a fun new language for distributed computing using Java and Spoon. \ No newline at end of file +The [Distributed Calculus example](https://gforge.inria.fr/scm/viewvc.php/trunk/spoon-examples/src/main/java/spoon/examples/distcalc/?root=spoon) creates a fun new language for distributed computing using Java and Spoon.