diff options
author | Jean-Tiare LE BIGOT <admin@jtlebi.fr> | 2012-08-11 13:22:07 -0400 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-08-12 19:29:16 +0200 |
commit | fc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch) | |
tree | 8026ad5e9a05948f882f790675c0813c72cd42bf /udkapi/com/sun/star/java | |
parent | 602f956d3231a093c9853d88fe5d5de2465f7112 (diff) |
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing
only spaces and '=' or '-'
$ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \;
Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'udkapi/com/sun/star/java')
-rw-r--r-- | udkapi/com/sun/star/java/JavaVirtualMachine.idl | 3 | ||||
-rw-r--r-- | udkapi/com/sun/star/java/WrongJavaVersionException.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/java/XJavaThreadRegister_11.idl | 6 | ||||
-rw-r--r-- | udkapi/com/sun/star/java/XJavaVM.idl | 6 |
4 files changed, 0 insertions, 19 deletions
diff --git a/udkapi/com/sun/star/java/JavaVirtualMachine.idl b/udkapi/com/sun/star/java/JavaVirtualMachine.idl index 4b5d98f0b754..92e4375a526a 100644 --- a/udkapi/com/sun/star/java/JavaVirtualMachine.idl +++ b/udkapi/com/sun/star/java/JavaVirtualMachine.idl @@ -19,14 +19,12 @@ #ifndef __com_sun_star_java_JavaVirtualMachine_idl__ #define __com_sun_star_java_JavaVirtualMachine_idl__ -//============================================================================= module com { module sun { module star { module java { published interface XJavaVM; published interface XJavaThreadRegister_11; -//============================================================================= // DocMerge from xml: service com::sun::star::java::JavaVirtualMachine /** exports interfaces to handle a JavaVM and Java threads. @@ -46,7 +44,6 @@ published service JavaVirtualMachine }; -//============================================================================= }; }; }; }; diff --git a/udkapi/com/sun/star/java/WrongJavaVersionException.idl b/udkapi/com/sun/star/java/WrongJavaVersionException.idl index 4041cbcb80c9..2e5d0e312ff3 100644 --- a/udkapi/com/sun/star/java/WrongJavaVersionException.idl +++ b/udkapi/com/sun/star/java/WrongJavaVersionException.idl @@ -24,25 +24,21 @@ module com { module sun { module star { module java { -//============================================================================ /** indicates that an operation involving Java (probably executing Java code) failed due to a wrong Java version. */ published exception WrongJavaVersionException: com::sun::star::uno::Exception { - //------------------------------------------------------------------------ /** contains the lowest Java version for which the operation would succeed, or is left empty if this is unknown. */ string LowestSupportedVersion; - //------------------------------------------------------------------------ /** contains the highest Java version for which the operation would succeed, or is left empty if this is unknown. */ string HighestSupportedVersion; - //------------------------------------------------------------------------ /** contains the Java version that has been detected, or is left empty if this is unknown. */ diff --git a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl index 9c04f861b26a..b5298d4de8f4 100644 --- a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl +++ b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl @@ -22,11 +22,9 @@ #include <com/sun/star/uno/XInterface.idl> -//============================================================================= 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. @@ -36,14 +34,12 @@ 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. @@ -53,7 +49,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. @@ -63,7 +58,6 @@ published interface XJavaThreadRegister_11: com::sun::star::uno::XInterface void revokeThread(); }; -//============================================================================= }; }; }; }; diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl index 359a13456fc8..002dc607115e 100644 --- a/udkapi/com/sun/star/java/XJavaVM.idl +++ b/udkapi/com/sun/star/java/XJavaVM.idl @@ -21,11 +21,9 @@ #include <com/sun/star/uno/XInterface.idl> -//============================================================================= 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. @@ -40,7 +38,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. @@ -103,14 +100,12 @@ 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. @@ -121,7 +116,6 @@ published interface XJavaVM: com::sun::star::uno::XInterface }; -//============================================================================= }; }; }; }; |