:: com :: sun :: star :: beans ::

interface XIntroTest
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XIntroTest
[ DEPRECATED ]
Description
This is a test interface for introspection.

Methods' Summary
writeln output method.
getDroenk ...
getIntroTest gets another object with this interface.
getUps !!! No property, because parameter exists
setDroenk ...
getBla ...
setBla !!! Not the set method for property Bla, because param type != return type.
getBlub ...
setBlub ...
getGulp ...
setGulp !!! Not the set method for property Gulp, because return type != void.
getTypeClass ...
setTypeClass ...
getStrings
setStrings ...
setStringsPerMethod ...
getMultiSequence
setMultiSequence ...
addPropertiesChangeListener adds a listener which is called, when one of the specified properties changes its value.
removePropertiesChangeListener removes a listener.
Methods' Details
writeln
void
writeln(
 
[in] string
 
Text );

Description
output method.
getDroenk
long
getDroenk();
 
 

Description
...
getIntroTest
XIntroTest
getIntroTest();
 
 

Description
gets another object with this interface.
getUps
long
getUps(
 
[in] long
 
l );

Description
!!! No property, because parameter exists
setDroenk
void
setDroenk(
 
[in] long
 
l );

Description
...
getBla
short
getBla();
 
 

Description
...
setBla
void
setBla(
 
[in] long
 
n );

Description
!!! Not the set method for property Bla, because param type != return type.
getBlub
short
getBlub();
 
 

Description
...
setBlub
void
setBlub(
 
[in] short
 
n );

Description
...
getGulp
short
getGulp();
 
 

Description
...
setGulp
short
setGulp(
 
[in] short
 
n );

Description
!!! Not the set method for property Gulp, because return type != void.
getTypeClass
::com::sun::star::uno::TypeClass
getTypeClass(
 
[in] short
 
n );

Description
...
setTypeClass
void
setTypeClass(
 
[in] ::com::sun::star::uno::TypeClass
[in] double
[in] double
 
t,
d1,
d2 );

Description
...
getStrings
sequence< string >
getStrings();
 
 

setStrings
void
setStrings(
 
[in] sequence< string >
 
Strings );

Description
...
setStringsPerMethod
void
setStringsPerMethod(
 
[in] sequence< string >
[in] short
 
Strings,
n );

Description
...
getMultiSequence
sequence< sequence< sequence< short > > >
getMultiSequence();
 
 

setMultiSequence
void
setMultiSequence(
 
[in] sequence< sequence< sequence< short > > >
 
Seq );

Description
...
addPropertiesChangeListener
[oneway] void
addPropertiesChangeListener(
 
[in] sequence< string >
[in] XPropertiesChangeListener
 
PropertyNames,
Listener );

Description
adds a listener which is called, when one of the specified properties changes its value.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

removePropertiesChangeListener
[oneway] void
removePropertiesChangeListener(
 
[in] XPropertiesChangeListener
 
Listener );

Description
removes a listener.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

Attributes' Summary
ObjectName contains the ID-String of the implementation.
FirstName contains the first name of a person.
LastName contains the last name of a person.
Age contains the age of a person.
ChildrenCount contains the number of children person has.
FirstStruct contains a struct of type Property .
SecondStruct contains a struct of type PropertyValue .
Attributes' Details
ObjectName
string ObjectName;
Description
contains the ID-String of the implementation.
FirstName
[ readonly ] string FirstName;
Description
contains the first name of a person.
LastName
[ readonly ] string LastName;
Description
contains the last name of a person.
Age
[ readonly ] short Age;
Description
contains the age of a person.
ChildrenCount
short ChildrenCount;
Description
contains the number of children person has.
FirstStruct
Property FirstStruct;
Description
contains a struct of type Property .
SecondStruct
PropertyValue SecondStruct;
Description
contains a struct of type PropertyValue .
Top of Page