org.blackdread.camerabinding.annotation.ImplicitRetain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camera-binding Show documentation
Show all versions of camera-binding Show documentation
Bindings of C header files in java of EDSDK
package org.blackdread.camerabinding.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* When a parameter is marked with this annotation, the reference counter is implicitly 1 for the retrieved object/reference. When the object is not needed, you must use EdsRelease to decrease the reference counter of that variable.
*
* Created on 2018/10/24.
*
* @author Yoann CAPLAIN
*/
@Documented
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.PARAMETER})
public @interface ImplicitRetain {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy