summaryrefslogtreecommitdiff
path: root/stoc/source/javavm/jvmargs.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2002-08-08 09:39:54 +0000
committerJoachim Lingner <jl@openoffice.org>2002-08-08 09:39:54 +0000
commit3bbad9330ca109fe3258402c4647dcc34338752c (patch)
tree973f49ad5b9087b3bc5a2364a0d563f06efdbee1 /stoc/source/javavm/jvmargs.cxx
parent62494ae01ee08132fd283f84313f55fb79026fe7 (diff)
#101225# a JavaNotConfiguredException is only thrown if there is no java.ini AND no environment variables set (OO_JAVA_PROPERTIES)
Diffstat (limited to 'stoc/source/javavm/jvmargs.cxx')
-rw-r--r--stoc/source/javavm/jvmargs.cxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/stoc/source/javavm/jvmargs.cxx b/stoc/source/javavm/jvmargs.cxx
index 55e2e8afca13..6caba2f37c42 100644
--- a/stoc/source/javavm/jvmargs.cxx
+++ b/stoc/source/javavm/jvmargs.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: jvmargs.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jbu $ $Date: 2002-04-29 14:12:14 $
+ * last change: $Author: jl $ $Date: 2002-08-08 10:39:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -250,6 +250,10 @@ namespace stoc_javavm {
_systemClasspath = buf.makeStringAndClear();
}
}
+OUString JVM::getSystemClasspath()
+{
+ return _systemClasspath;
+}
void JVM::addUserClasspath(const OUString & classpath) throw() {
if( classpath.getLength() )
@@ -267,6 +271,11 @@ namespace stoc_javavm {
}
}
+OUString JVM::getUserClasspath()
+{
+ return _userClasspath;
+}
+
void JVM::setPrint(JNIvfprintf vfprintf) throw() {
_is_print = sal_True;
_print = vfprintf;