aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-07-04 00:51:06 +0000
committerSven Gothel <[email protected]>2009-07-04 00:51:06 +0000
commit7dcb2b468ee7f3453fe69642e42cf4c2a21a0989 (patch)
tree3b3440a127d31cf21774c428fdd5a450f884aabc /src
parent1e334b2c269fc7fbb59a16a52cf1d4bbee0aa6ac (diff)
Local property access package-private (no qualifiers)
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@2020 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src')
-rw-r--r--src/jogl/classes/com/sun/opengl/impl/Debug.java8
-rw-r--r--src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java8
-rw-r--r--src/newt/classes/com/sun/javafx/newt/impl/Debug.java8
3 files changed, 12 insertions, 12 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/Debug.java b/src/jogl/classes/com/sun/opengl/impl/Debug.java
index b6c6e6a00..7c5451706 100644
--- a/src/jogl/classes/com/sun/opengl/impl/Debug.java
+++ b/src/jogl/classes/com/sun/opengl/impl/Debug.java
@@ -61,7 +61,7 @@ public class Debug {
}
}
- protected static int getIntProperty(final String property, final boolean jnlpAlias) {
+ static int getIntProperty(final String property, final boolean jnlpAlias) {
return getIntProperty(property, jnlpAlias, localACC);
}
@@ -74,7 +74,7 @@ public class Debug {
return i;
}
- protected static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
+ static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
return getBooleanProperty(property, jnlpAlias, localACC);
}
@@ -83,7 +83,7 @@ public class Debug {
return b.booleanValue();
}
- protected static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
+ static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
return isPropertyDefined(property, jnlpAlias, localACC);
}
@@ -91,7 +91,7 @@ public class Debug {
return (Debug.getProperty(property, jnlpAlias, acc) != null) ? true : false;
}
- protected static String getProperty(final String property, final boolean jnlpAlias) {
+ static String getProperty(final String property, final boolean jnlpAlias) {
return getProperty(property, jnlpAlias, localACC);
}
diff --git a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java b/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
index 7b7785a7c..dd967c71a 100644
--- a/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
+++ b/src/nativewindow/classes/com/sun/nativewindow/impl/Debug.java
@@ -61,7 +61,7 @@ public class Debug {
}
}
- protected static int getIntProperty(final String property, final boolean jnlpAlias) {
+ static int getIntProperty(final String property, final boolean jnlpAlias) {
return getIntProperty(property, jnlpAlias, localACC);
}
@@ -74,7 +74,7 @@ public class Debug {
return i;
}
- protected static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
+ static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
return getBooleanProperty(property, jnlpAlias, localACC);
}
@@ -83,7 +83,7 @@ public class Debug {
return b.booleanValue();
}
- protected static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
+ static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
return isPropertyDefined(property, jnlpAlias, localACC);
}
@@ -91,7 +91,7 @@ public class Debug {
return (Debug.getProperty(property, jnlpAlias, acc) != null) ? true : false;
}
- protected static String getProperty(final String property, final boolean jnlpAlias) {
+ static String getProperty(final String property, final boolean jnlpAlias) {
return getProperty(property, jnlpAlias, localACC);
}
diff --git a/src/newt/classes/com/sun/javafx/newt/impl/Debug.java b/src/newt/classes/com/sun/javafx/newt/impl/Debug.java
index ed8531295..202d9d5b3 100644
--- a/src/newt/classes/com/sun/javafx/newt/impl/Debug.java
+++ b/src/newt/classes/com/sun/javafx/newt/impl/Debug.java
@@ -61,7 +61,7 @@ public class Debug {
}
}
- protected static int getIntProperty(final String property, final boolean jnlpAlias) {
+ static int getIntProperty(final String property, final boolean jnlpAlias) {
return getIntProperty(property, jnlpAlias, localACC);
}
@@ -74,7 +74,7 @@ public class Debug {
return i;
}
- protected static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
+ static boolean getBooleanProperty(final String property, final boolean jnlpAlias) {
return getBooleanProperty(property, jnlpAlias, localACC);
}
@@ -83,7 +83,7 @@ public class Debug {
return b.booleanValue();
}
- protected static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
+ static boolean isPropertyDefined(final String property, final boolean jnlpAlias) {
return isPropertyDefined(property, jnlpAlias, localACC);
}
@@ -91,7 +91,7 @@ public class Debug {
return (Debug.getProperty(property, jnlpAlias, acc) != null) ? true : false;
}
- protected static String getProperty(final String property, final boolean jnlpAlias) {
+ static String getProperty(final String property, final boolean jnlpAlias) {
return getProperty(property, jnlpAlias, localACC);
}