summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/inspection
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-30 17:02:37 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:08 +0200
commit8a3543340fc8026121a7e4d681b3fce7c920bc1f (patch)
tree3ed60f1879838b3c4b5cc5d542b94d2dba781182 /offapi/com/sun/star/inspection
parent48661084104b5d52f7421909131e153639e653f2 (diff)
*api: fix a bunch of "illegal" and "empty" tags
Apparently doxygen doesn't like XML-style empty elements. Change-Id: I0fe8105a196fa3cf5b980f0b6f18933adf8a1d53
Diffstat (limited to 'offapi/com/sun/star/inspection')
-rw-r--r--offapi/com/sun/star/inspection/ObjectInspector.idl6
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspectorModel.idl16
2 files changed, 11 insertions, 11 deletions
diff --git a/offapi/com/sun/star/inspection/ObjectInspector.idl b/offapi/com/sun/star/inspection/ObjectInspector.idl
index 64a8464ce1ac..1a962b760faa 100644
--- a/offapi/com/sun/star/inspection/ObjectInspector.idl
+++ b/offapi/com/sun/star/inspection/ObjectInspector.idl
@@ -28,7 +28,7 @@ module com { module sun { module star { module inspection {
browse and modify properties of components.
<p>The controller can be plugged into an com::sun::star::frame::XFrame, and will
- provide a visual component for inspecting and modifying component properties.<br/>
+ provide a visual component for inspecting and modifying component properties.<br>
Note that "property" here is a generic term - any aspect of a component can be considered a property,
as long as some property handler is able to describe this aspect in a property-like way.</p>
@@ -48,11 +48,11 @@ module com { module sun { module star { module inspection {
<p>The property handlers, as well as more information about the layout of the inspector,
are provided by a inspector model, which has to be implemented by the user of the inspector.</p>
- <p/>
+ </p>
<p>Since property handlers might have the need to raise UI, they will be created with a context
value named "DialogParentWindow", which contains an XWindow which should be used as parent of
- any windows to raise.<br/>
+ any windows to raise.<br>
If the com::sun::star::uno::XComponentContext in which the ObjectInspector
was created already contains such a value, it is not overwritten. Only if it doesn't, the inspector
will add an own value - which contains the inspector's main window - to the context when creating
diff --git a/offapi/com/sun/star/inspection/XObjectInspectorModel.idl b/offapi/com/sun/star/inspection/XObjectInspectorModel.idl
index b83348fcd941..7d3daeb0e8af 100644
--- a/offapi/com/sun/star/inspection/XObjectInspectorModel.idl
+++ b/offapi/com/sun/star/inspection/XObjectInspectorModel.idl
@@ -40,11 +40,11 @@ interface XObjectInspectorModel
<p>Every element of the sequence must contain information to create a
XPropertyHandler instance. Two ways are currently supported:
<ul>
- <li>A service name:</br>
+ <li>A service name:<br>
If a sequence element contains a string, this string is interpreted
as service name, and an com::sun::star::lang::XMultiComponentFactory
is asked to create an instance of this service.</li>
- <li>A factory:<br/>
+ <li>A factory:<br>
If a sequence element contains an instance implementing the
com::sun::star::lang::XSingleComponentFactory interface, this factory
is used to create a property handler.</li>
@@ -67,7 +67,7 @@ interface XObjectInspectorModel
<p>Properties can be sorted into different categories, described by the LineDescriptor::Category
attribute, which is filled in XPropertyHandler::describePropertyLine()
- method of your property handler.<br/>
+ method of your property handler.<br>
Those names provided by the handlers are programmatic names. All other information
about categories is part of the PropertyCategoryDescriptor, and
describeCategories() assembles information about all categories which
@@ -76,9 +76,9 @@ interface XObjectInspectorModel
@return
a sequence of category descriptors. Their relative ordering also describes
the relative ordering of the categories in the ObjectInspector's
- user interface.<br/>
- The sequence must not contain two entries with the same programmatic name.<br/>
- <br/>
+ user interface.<br>
+ The sequence must not contain two entries with the same programmatic name.<br>
+ <br>
The model implementation might return an empty sequence here, in this case, the ObjectInspector
automatically builds its category information from the categories provided by the
property handlers.
@@ -103,7 +103,7 @@ interface XObjectInspectorModel
<p>If for two different properties the same order index is returned, the
ObjectInspector will assume the order in which those properties
were provided by the respective property handler
- (XPropertyHandler::getSupportedProperties()).<br/>
+ (XPropertyHandler::getSupportedProperties()).<br>
If two such properties originate from different handlers, they will be ordered according
to the order of the handlers, as provided in the #HandlerFactories attribute.</p>
@@ -117,7 +117,7 @@ interface XObjectInspectorModel
/** indicates that the object inspector should have a help section.
<p>The object inspector displays lines of property/values, optionally grouped
- into categories, as described by the property handlers.<br/>
+ into categories, as described by the property handlers.<br>
Additionally, the inspector can optionally display a section dedicated to help
texts. Clients could use this section to display context-sensitive help, for
instance short texts explaining the currently selected property.</p>