aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/net
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-10-03 20:11:43 +0200
committerSven Gothel <[email protected]>2015-10-03 20:11:43 +0200
commit1d5d6391f2da4cc200340448df88651cf26f1f66 (patch)
tree12cb70a3bf12977854af9f166b03677320d4ac0b /src/java/com/jogamp/common/net
parent026875dd5256051d4e3504f1d9b01f7ce2bb70ff (diff)
Refine new API methods: ExceptionUtils, Uri (Add @since, refine arguments and API doc)
Diffstat (limited to 'src/java/com/jogamp/common/net')
-rw-r--r--src/java/com/jogamp/common/net/Uri.java5
1 files changed, 4 insertions, 1 deletions
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() );
}