aboutsummaryrefslogtreecommitdiffstats
path: root/src/nativewindow/classes/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-07-03 04:34:02 +0000
committerSven Gothel <[email protected]>2009-07-03 04:34:02 +0000
commit05cab54625f7482b1179cabe4902fbbbb53ea44d (patch)
tree366001efdb204266f59910145010183a2411af45 /src/nativewindow/classes/com
parentd6ec90ca7bfe9ee217386365c819659c161a10f6 (diff)
Fix property handling ; Adding jnlp. aliasing for properties
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@2016 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/nativewindow/classes/com')
-rw-r--r--src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java32
1 files changed, 22 insertions, 10 deletions
diff --git a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java b/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
index 5d53f88fd..7e7b81e8b 100644
--- a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
+++ b/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
@@ -59,25 +59,37 @@ public class Debug {
}
}
- public static boolean getBooleanProperty(final String property) {
- Boolean b = (Boolean) AccessController.doPrivileged(new PrivilegedAction() {
- public Object run() {
- boolean val = Boolean.getBoolean(property);
- return (val ? Boolean.TRUE : Boolean.FALSE);
- }
- });
+ public static int getIntProperty(final String property, final boolean jnlpAlias) {
+ int i=0;
+ try {
+ Integer iv = Integer.valueOf(Debug.getProperty(property, jnlpAlias));
+ i = iv.intValue();
+ } catch (NumberFormatException nfe) {}
+ return i;
+ }
+
+ public static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
+ Boolean b = Boolean.valueOf(Debug.getProperty(property, jnlpAlias));
return b.booleanValue();
}
public static boolean isPropertyDefined(final String property) {
- Boolean b = (Boolean) AccessController.doPrivileged(new PrivilegedAction() {
+ return (Debug.getProperty(property, true) != null) ? true : false;
+ }
+
+ public static String getProperty(final String property, final boolean jnlpAlias) {
+ String s = (String) AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
String val = System.getProperty(property);
- return (val != null ? Boolean.TRUE : Boolean.FALSE);
+ if(null==val && jnlpAlias && !property.startsWith(jnlp_prefix)) {
+ val = System.getProperty(jnlp_prefix + property);
+ }
+ return val;
}
});
- return b.booleanValue();
+ return s;
}
+ public static final String jnlp_prefix = "jnlp." ;
public static boolean verbose() {
return verbose;