diff --git a/nl/graphelement.md b/nl/graphelement.md new file mode 100644 index 0000000000000000000000000000000000000000..125b3404f518b974e8a042d6ecc3aab7b4717d7e --- /dev/null +++ b/nl/graphelement.md @@ -0,0 +1,12 @@ +Valid on frames: **Edge** and **vertex** + +The `@GraphElement` annotation takes no parameters and is placed before your class decleration on an `EdgeFrame` or `VertexFrame`. This annotation is mostly leveraged right now when scanning classes in a package to identify frames. + +example: + +```java +@GraphElement +public interface FooVertex extends VertexFrame { + //Methods goes here +} +``` \ No newline at end of file