summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/java
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-13 10:32:24 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-13 10:36:21 +0200
commitd1449a9b990bf054adeb66c2bab871ce396cca18 (patch)
tree59821f7dec938e0f1e0ff330b1de849e5cb9bc47 /udkapi/com/sun/star/java
parentbc7202aad393b17d0e2545001f7f869f683a7ec7 (diff)
Bin pointless "DocMerge" comment lines
Change-Id: I8eb2116b39929770f00e30d5ab9ca2c28c988e35
Diffstat (limited to 'udkapi/com/sun/star/java')
-rw-r--r--udkapi/com/sun/star/java/XJavaThreadRegister_11.idl8
-rw-r--r--udkapi/com/sun/star/java/XJavaVM.idl8
2 files changed, 0 insertions, 16 deletions
diff --git a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl
index b5298d4de8f4..5337675567d6 100644
--- a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl
+++ b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl
@@ -25,8 +25,6 @@
module com { module sun { module star { module java {
-
-// DocMerge from xml: interface com::sun::star::java::XJavaThreadRegister_11
/** must be implemented by the user of the XJavaThreadRegister_11.
@incomplete
@@ -34,14 +32,10 @@ module com { module sun { module star { module java {
*/
published interface XJavaThreadRegister_11: com::sun::star::uno::XInterface
{
-
- // DocMerge from xml: method com::sun::star::java::XJavaThreadRegister_11::isThreadAttached
/** returns <true/> if the current thread is already attached to the VM otherwise <false/>.
*/
boolean isThreadAttached();
-
- // DocMerge from xml: method com::sun::star::java::XJavaThreadRegister_11::registerThread
/** registers the current thread.
<p>This method should be called every time a JNI function is called from Java. </p>
@@ -49,8 +43,6 @@ published interface XJavaThreadRegister_11: com::sun::star::uno::XInterface
void registerThread();
-
- // DocMerge from xml: method com::sun::star::java::XJavaThreadRegister_11::revokeThread
/** revokes the current thread from the list of registerd threads.
<p>This method should be called at the end of every JNI call from Java. </p>
diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl
index 002dc607115e..ca51ab3a3b31 100644
--- a/udkapi/com/sun/star/java/XJavaVM.idl
+++ b/udkapi/com/sun/star/java/XJavaVM.idl
@@ -24,8 +24,6 @@
module com { module sun { module star { module java {
-
-// DocMerge from xml: interface com::sun::star::java::XJavaVM
/** must be implemented by the user of the XJavaVM.
@deprecated
@@ -38,8 +36,6 @@ module com { module sun { module star { module java {
*/
published interface XJavaVM: com::sun::star::uno::XInterface
{
-
- // DocMerge from xml: method com::sun::star::java::XJavaVM::getJavaVM
/** returns the address of the Java Virtual Machine.
<p>If the VM is not already instantiated, it will be now.</p>
@@ -100,14 +96,10 @@ published interface XJavaVM: com::sun::star::uno::XInterface
*/
any getJavaVM( [in] sequence<byte> processID );
-
- // DocMerge from xml: method com::sun::star::java::XJavaVM::isVMStarted
/** returns <true/> if the VM is started successfully, otherwise <false/>.
*/
boolean isVMStarted();
-
- // DocMerge from xml: method com::sun::star::java::XJavaVM::isVMEnabled
/** Returns <true/> if the VM is enabled.
<p>It is only possible to get the VM, if this method return 0. </p>