summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/java/lang
diff options
context:
space:
mode:
authorPhilipp Weissenbacher <p.weissenbacher@gmail.com>2012-03-01 02:27:38 +0100
committerPhilipp Weissenbacher <p.weissenbacher@gmail.com>2012-03-01 02:33:44 +0100
commite5f5ab57a124ffaf5e26e90af5aa546ad8451d4d (patch)
treefb614ed8f2108c3553b67f5463165bc8ac0eb005 /connectivity/source/inc/java/lang
parentebe26f72e90337da2d14f3029de148904e3e30b6 (diff)
Translate German comments, fix some whitespace
Diffstat (limited to 'connectivity/source/inc/java/lang')
-rw-r--r--connectivity/source/inc/java/lang/Object.hxx19
1 files changed, 9 insertions, 10 deletions
diff --git a/connectivity/source/inc/java/lang/Object.hxx b/connectivity/source/inc/java/lang/Object.hxx
index 01786287ee02..ef2c951b8dcd 100644
--- a/connectivity/source/inc/java/lang/Object.hxx
+++ b/connectivity/source/inc/java/lang/Object.hxx
@@ -78,29 +78,28 @@ namespace connectivity
class java_lang_Class;
class java_lang_Object
{
- // Zuweisungsoperator und Copy Konstruktor sind verboten
+ // operator= and the copy ctor are forbidden
java_lang_Object& operator= (java_lang_Object&);
java_lang_Object(java_lang_Object&);
- // nur zum Zerstoeren des C++ Pointers in vom JSbxObject
- // abgeleiteten Java Objekten
+ // Only to destroy the C++ pointer of Java objects derived from JSbxObject
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
protected:
- // der JAVA Handle zu dieser Klasse
+ // The Java handle to this class
jobject object;
- // Klassendefinition
- // neu in SJ2:
- static jclass theClass; // die Klasse braucht nur einmal angefordert werden !
+ // Class definiton
+ // New in SJ2:
+ static jclass theClass; // The class needs to be requested only once!
virtual jclass getMyClass() const;
public:
- // der Konstruktor, der fuer die abgeleiteten Klassen verwendet
- // werden soll.
+ // Ctor that should be used for the derived classes
java_lang_Object( JNIEnv * pEnv, jobject myObj );
- // der eigentliche Konstruktor
+
+ // The actual ctor
java_lang_Object(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory=NULL);
virtual ~java_lang_Object();