001package fr.aumgn.dac2.shape;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * The name of the shape used to serialize it with Gson.
010 */
011@Target(ElementType.TYPE)
012@Retention(RetentionPolicy.RUNTIME)
013public @interface ShapeName {
014
015    String value();
016}