From 1d5d6391f2da4cc200340448df88651cf26f1f66 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 3 Oct 2015 20:11:43 +0200 Subject: Refine new API methods: ExceptionUtils, Uri (Add @since, refine arguments and API doc) --- src/java/com/jogamp/common/net/Uri.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/java/com/jogamp/common/net/Uri.java') diff --git a/src/java/com/jogamp/common/net/Uri.java b/src/java/com/jogamp/common/net/Uri.java index a6fd4fe..bca90bf 100644 --- a/src/java/com/jogamp/common/net/Uri.java +++ b/src/java/com/jogamp/common/net/Uri.java @@ -1235,7 +1235,10 @@ public class Uri { return null != scheme && FILE_SCHEME.equals( scheme.get() ); } - /** Returns true, if this instance is a {@code jar} {@code scheme}, otherwise false. */ + /** + * Returns true, if this instance is a {@code jar} {@code scheme}, otherwise false. + * @since 2.3.2 + */ public final boolean isJarScheme() { return null != scheme && JAR_SCHEME.equals( scheme.get() ); } -- cgit v1.2.3