org.raml.emitter.IgnoreOnDump Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of raml-parser Show documentation
Show all versions of raml-parser Show documentation
Java implementation of the raml parser taken from https://github.com/raml-org/raml-java-parser and adjusted
//Changed by hybris
//HYBRIS START
package org.raml.emitter;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Marks a field as to not emit on dumping.
*/
@Retention(value = RetentionPolicy.RUNTIME)
public @interface IgnoreOnDump {
}
//HYBRIS END