com.github.loicoudot.java4cpp.Java4CppNoWrappe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java4cpp-annotations Show documentation
Show all versions of java4cpp-annotations Show documentation
Annotations classes for java4cpp project
The newest version!
package com.github.loicoudot.java4cpp;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Disable the wrapping of an element. The annotation can be placed on public :
*
* - inner-class if {@code Java4Cpp(all = true)}
* - constructor if {@code Java4Cpp(all = true)}
* - method if {@code Java4Cpp(all = true)}
* - static field if {@code Java4Cpp(staticFields = true)}
*
*
* @author Loic Oudot
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Java4CppNoWrappe {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy