@@ -2044,14 +2044,14 @@ public static final class FunctionPointerObject {
20442044 /**
20452045 * Pointer to a predefined function
20462046 *
2047- * @deprecated Use the new LangNativeFunction system instead
2047+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
20482048 */
20492049 @ Deprecated
20502050 public static final int PREDEFINED = 2 ;
20512051 /**
20522052 * Function which is defined in the language
20532053 *
2054- * @deprecated Use the new LangNativeFunction system instead
2054+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
20552055 */
20562056 @ Deprecated
20572057 public static final int EXTERNAL = 3 ;
@@ -2182,7 +2182,7 @@ public FunctionPointerObject(LangNativeFunction nativeFunction) {
21822182 /**
21832183 * For pointer to predefined function/linker function
21842184 *
2185- * @deprecated Use the new LangNativeFunction system instead
2185+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
21862186 */
21872187 @ Deprecated
21882188 public FunctionPointerObject (String langPath , String langFile , String functionName , LangPredefinedFunctionObject predefinedFunction ) {
@@ -2200,7 +2200,7 @@ public FunctionPointerObject(String langPath, String langFile, String functionNa
22002200 /**
22012201 * For pointer to predefined function/linker function
22022202 *
2203- * @deprecated Use the new LangNativeFunction system instead
2203+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22042204 */
22052205 @ Deprecated
22062206 public FunctionPointerObject (String langPath , String langFile , LangPredefinedFunctionObject predefinedFunction ) {
@@ -2209,7 +2209,7 @@ public FunctionPointerObject(String langPath, String langFile, LangPredefinedFun
22092209 /**
22102210 * For pointer to predefined function/linker function
22112211 *
2212- * @deprecated Use the new LangNativeFunction system instead
2212+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22132213 */
22142214 @ Deprecated
22152215 public FunctionPointerObject (String functionName , LangPredefinedFunctionObject predefinedFunction ) {
@@ -2218,7 +2218,7 @@ public FunctionPointerObject(String functionName, LangPredefinedFunctionObject p
22182218 /**
22192219 * For pointer to predefined function/linker function
22202220 *
2221- * @deprecated Use the new LangNativeFunction system instead
2221+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22222222 */
22232223 @ Deprecated
22242224 public FunctionPointerObject (LangPredefinedFunctionObject predefinedFunction ) {
@@ -2228,7 +2228,7 @@ public FunctionPointerObject(LangPredefinedFunctionObject predefinedFunction) {
22282228 /**
22292229 * For pointer to external function
22302230 *
2231- * @deprecated Use the new LangNativeFunction system instead
2231+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22322232 */
22332233 @ Deprecated
22342234 public FunctionPointerObject (String langPath , String langFile , String functionName , LangExternalFunctionObject externalFunction ) {
@@ -2246,7 +2246,7 @@ public FunctionPointerObject(String langPath, String langFile, String functionNa
22462246 /**
22472247 * For pointer to external function
22482248 *
2249- * @deprecated Use the new LangNativeFunction system instead
2249+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22502250 */
22512251 @ Deprecated
22522252 public FunctionPointerObject (String langPath , String langFile , LangExternalFunctionObject externalFunction ) {
@@ -2255,7 +2255,7 @@ public FunctionPointerObject(String langPath, String langFile, LangExternalFunct
22552255 /**
22562256 * For pointer to external function
22572257 *
2258- * @deprecated Use the new LangNativeFunction system instead
2258+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22592259 */
22602260 @ Deprecated
22612261 public FunctionPointerObject (String functionName , LangExternalFunctionObject externalFunction ) {
@@ -2264,7 +2264,7 @@ public FunctionPointerObject(String functionName, LangExternalFunctionObject ext
22642264 /**
22652265 * For pointer to external function
22662266 *
2267- * @deprecated Use the new LangNativeFunction system instead
2267+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
22682268 */
22692269 @ Deprecated
22702270 public FunctionPointerObject (LangExternalFunctionObject externalFunction ) {
@@ -2316,15 +2316,15 @@ public LangNativeFunction getNativeFunction() {
23162316 }
23172317
23182318 /**
2319- * @deprecated Use the new LangNativeFunction system instead
2319+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
23202320 */
23212321 @ Deprecated
23222322 public LangPredefinedFunctionObject getPredefinedFunction () {
23232323 return predefinedFunction ;
23242324 }
23252325
23262326 /**
2327- * @deprecated Use the new LangNativeFunction system instead
2327+ * @deprecated [Will be removed in 1.0.0-beta-06] Use the new LangNativeFunction system instead
23282328 */
23292329 @ Deprecated
23302330 public LangExternalFunctionObject getExternalFunction () {
0 commit comments