org.kde.koala

Class KAboutTranslator

public class KAboutTranslator extends Object implements QtSupport

This structure is used to store information about a translator. It can store the translator's name and an email address. This class is intended for use in the KAboutData class, but it can be used elsewhere as well. Normally you should at least define the translator's name. It's not possible to use KAboutPerson for this, because KAboutPerson stores internally only String pointers, but the translator information is generated dynamically from the translation of a dummy string.

UNKNOWN: This structure is used to store information about a translator.

Constructor Summary
protected KAboutTranslator(Class dummy)
KAboutTranslator(String name, String emailAddress)
Convenience constructor
KAboutTranslator(String name)
KAboutTranslator()
Method Summary
voiddispose()
Delete the wrapped C++ instance ahead of finalize()
StringemailAddress()
The translator's email
protected voidfinalize()
Deletes the wrapped C++ instance
booleanisDisposed()
Has the wrapped C++ instance been deleted?
Stringname()
The translator's name

Constructor Detail

KAboutTranslator

protected KAboutTranslator(Class dummy)

KAboutTranslator

public KAboutTranslator(String name, String emailAddress)
Convenience constructor

Parameters: name The name of the person. emailAddress The email address of the person.

UNKNOWN: Convenience constructor

KAboutTranslator

public KAboutTranslator(String name)

KAboutTranslator

public KAboutTranslator()

Method Detail

dispose

public void dispose()
Delete the wrapped C++ instance ahead of finalize()

emailAddress

public String emailAddress()
The translator's email

Returns: the translator's email address (can be null, if it has been constructed with a null email)

UNKNOWN: The translator's email

finalize

protected void finalize()
Deletes the wrapped C++ instance

isDisposed

public boolean isDisposed()
Has the wrapped C++ instance been deleted?

name

public String name()
The translator's name

Returns: the translators's name (can be null, if it has been constructed with a null name)

UNKNOWN: The translator's name