• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.github.javaparser.metamodel;
2 
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.Target;
5 
6 import static java.lang.annotation.ElementType.FIELD;
7 import static java.lang.annotation.RetentionPolicy.RUNTIME;
8 
9 /**
10  * Indicate an internal property of a Node,
11  * meaning it is not part of the meta model.
12  * (Used during generation of the meta model.)
13  */
14 @Retention(RUNTIME)
15 @Target(FIELD)
16 public @interface InternalProperty {
17 }
18