All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ionic.sdk.core.annotation.InternalUseOnly Maven / Gradle / Ivy

Go to download

The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.

There is a newer version: 2.9.0
Show newest version
package com.ionic.sdk.core.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Program elements annotated with {@link InternalUseOnly} are intended for Ionic SDK internal use only.
 * 

* Such elements are not public by design and likely to be removed, have their signature change, or have their access * level decreased from public to protected, package, or private in future versions of the Ionic SDK without notice. */ @Documented @Retention(RetentionPolicy.RUNTIME) public @interface InternalUseOnly { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy