# spoon-examples **Repository Path**: lawnstein/spoon-examples ## Basic Information - **Project Name**: spoon-examples - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-05-24 - **Last Updated**: 2023-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://travis-ci.org/SpoonLabs/spoon-examples.svg?branch=master)](https://travis-ci.org/SpoonLabs/spoon-examples) # Spoon Examples ## Introduction spoon-examples gives analysis and transformation processors showing the usage of the open-source library [Spoon](https://github.com/INRIA/spoon). You can see these processors in: - [`src/main/java/fr/inria/gforge/spoon/analysis`](https://github.com/SpoonLabs/spoon-examples/tree/master/src/main/java/fr/inria/gforge/spoon/analysis) for analysis processors. - [`src/main/java/fr/inria/gforge/spoon/transformation`](https://github.com/SpoonLabs/spoon-examples/tree/master/src/main/java/fr/inria/gforge/spoon/transformation) for transformation processors. - [`src/main/java/fr/inria/gforge/spoon/spoonerism`](https://github.com/SpoonLabs/spoon-examples/tree/master/src/main/java/fr/inria/gforge/spoon/transformation) a basic example of transforming classes to extend a common parent class. Accompanied by the [spoonerism.fodp](https://github.com/SpoonLabs/spoon-examples/blob/master/docs/spoonerism.fodp) presentation. ## Usage You can run the tests of the project with a `mvn test` command on the root of the project to execute all examples (all test classes). ```console git clone https://github.com/SpoonLabs/spoon-examples.git cd spoon-examples mvn test ```