Kaydet (Commit) 944eb990 authored tarafından Michael Stahl's avatar Michael Stahl

*api: convert <type>Foo</type>

Doxygen does not know type element and will recognize strings that
contain capital letter (all API types do) automatically as type.
This patch removes 15k doxygen warnings.

git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1,"

Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
üst cdbbbdce

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

......@@ -25,9 +25,9 @@ module com { module sun { module star { module accessibility {
/** Every class has to support this service in order to be accessible.
<p>It provides the means to derive a <type>XAccessibleContext</type>
<p>It provides the means to derive a XAccessibleContext
object--which may but usually is not the same object as the object that
supports the <type>XAccessible</type> interface--that provides the
supports the XAccessible interface--that provides the
actual information that is needed to make it accessible.</p>
<p>Service <code>Accessible</code> is just a wrapper for the interface
......
......@@ -33,7 +33,7 @@ module com { module sun { module star { module accessibility {
are organized can be navigated in freely. It typically represents
spatial relationship of one object containing a set of children like a
dialog box contains a set of buttons. Additionally the
<type>XAccessibleContext</type> interface of this service exposes
XAccessibleContext interface of this service exposes
methods that provide access to the actual object's content. This can be
the object's role, name, description, and so on.</p>
......
......@@ -21,7 +21,7 @@
module com { module sun { module star { module accessibility {
/** These constants identify the type of <type>AccessibleEventObject</type>
/** These constants identify the type of AccessibleEventObject
objects.
<p>The <member>AccessibleEventObject::OldValue</member> and
......@@ -148,15 +148,15 @@ constants AccessibleEventId
/** A visible data event indicates the change of the visual appearance
of an accessible object. This includes for example most of the
attributes available over the <type>XAccessibleComponent</type> and
<type>XAccessibleExtendedComponent</type> interfaces. The
attributes available over the XAccessibleComponent and
XAccessibleExtendedComponent interfaces. The
<member>AccessibleEventObject::OldValue</member> and
<member>AccessibleEventObject::NewValue</member> fields are left empty.
*/
const short VISIBLE_DATA_CHANGED = 10;
/** This constant indicates changes of the value of an
<type>XAccessibleValue</type> interface. The
XAccessibleValue interface. The
<member>AccessibleEventObject::OldValue</member> and
<member>AccessibleEventObject::NewValue</member> field contain the
old and new value as a number. Its exact type is implementation
......@@ -245,7 +245,7 @@ constants AccessibleEventId
/** Events of this type signal changes of the selection. The old or new
selection is <em>not</em> available through the event object. You
have to query the <type>XAccessibleText</type> interface of the
have to query the XAccessibleText interface of the
event source for this information. The type of content of the
<member>AccessibleEventObject::OldValue</member> and
<member>AccessibleEventObject::NewValue</member> fields is not
......@@ -254,8 +254,8 @@ constants AccessibleEventId
const short TEXT_SELECTION_CHANGED = 21;
/** Use this id to indicate general text changes, i.e. changes to text
that is exposed through the <type>XAccessibleText</type> and
<type>XAccessibleEditableText</type> interfaces.
that is exposed through the XAccessibleText and
XAccessibleEditableText interfaces.
<p>The affected text ranges are represented by <type
scope="com::sun::star::accessibility">TextSegment</type> structures.<p>
......@@ -322,7 +322,7 @@ constants AccessibleEventId
/** Constant used to indicate that the column header has changed. The
<member>AccessibleEventObject::OldValue</member> is empty, the
<member>AccessibleEventObject::NewValue</member> field contains an
<type>AccessibleTableModelChange</type> representing the header
AccessibleTableModelChange representing the header
change.
*/
const short TABLE_COLUMN_HEADER_CHANGED = 27;
......@@ -330,7 +330,7 @@ constants AccessibleEventId
/** Constant used to indicate that the table data has changed. The
<member>AccessibleEventObject::OldValue</member> is empty, the
<member>AccessibleEventObject::NewValue</member> field contains an
<type>AccessibleTableModelChange</type> representing the data
AccessibleTableModelChange representing the data
change.
*/
const short TABLE_MODEL_CHANGED = 28;
......@@ -345,7 +345,7 @@ constants AccessibleEventId
/** Constant used to indicate that the row header has changed. The
<member>AccessibleEventObject::OldValue</member> is empty, the
<member>AccessibleEventObject::NewValue</member> field contains an
<type>AccessibleTableModelChange</type> representing the header
AccessibleTableModelChange representing the header
change.
*/
const short TABLE_ROW_HEADER_CHANGED = 30;
......
......@@ -24,10 +24,10 @@
module com { module sun { module star { module accessibility {
/** this struct describes an accessible event, that is broadcasted from
the <type>XAccessibleEventBroadcaster</type> and notified to
<type>XAccessibleEventListener</type>.
the XAccessibleEventBroadcaster and notified to
XAccessibleEventListener.
<p>It is usually implemented by <type>AccessibleContext</type>.
<p>It is usually implemented by AccessibleContext.
@since OOo 1.1.2
*/
......@@ -35,7 +35,7 @@ struct AccessibleEventObject: ::com::sun::star::lang::EventObject
{
/** specifies the type of this event.
<p>For a list of possible events see <type>AccessibleEventId</type>.
<p>For a list of possible events see AccessibleEventId.
*/
short EventId;
......
......@@ -23,7 +23,7 @@
module com { module sun { module star { module accessibility {
/** An <type>AccessibleRelation</type> object defines a one-to-many
/** An AccessibleRelation object defines a one-to-many
relation.
<p>The represented relation points from the implementing object to a set
......@@ -36,7 +36,7 @@ struct AccessibleRelation
/** Type of the relation.
<p>Its value has to be one of the constants defined by
<type>AccessibleRelationType</type>. If that value is INVALID then
AccessibleRelationType. If that value is INVALID then
the whole relation is regarded as invalid. The content of the
TargetSet is then undefined.</p>
......
......@@ -24,7 +24,7 @@ module com { module sun { module star { module accessibility {
/** Collection of relation types.
<p>This list of constants defines the available types of relations that
are usable by <type>AccessibleRelation</type>.</p>
are usable by AccessibleRelation.</p>
<p>We are using constants instead of a more typesafe enum. The reason
for this is that IDL enums may not be extended. Therefore, in order to
......
......@@ -25,12 +25,12 @@ module com { module sun { module star { module accessibility {
/** Collection of roles.
<p>This collection of constants defines the set of possible roles of
classes implementing the <type>XAccessible</type> interface according to
classes implementing the XAccessible interface according to
the Java class javax.accessibility.AccessibleRole. The role of an
object describes its generic function like "button", "menu", or "text".
You can obtain an object's role by calling the
<member>getAccessibleRole</member> method of the
<type>XAccessibleContext</type> interface.</p>
XAccessibleContext interface.</p>
<p>We are using constants instead of a more typesafe enum. The reason
for this is that IDL enums may not be extended. Therefore, in order to
......
......@@ -25,7 +25,7 @@ module com { module sun { module star { module accessibility {
/** Collection of state types.
<p>This list of constants defines the available set of states that an
object that implements <type>XAccessibleContext</type> can be in.</p>
object that implements XAccessibleContext can be in.</p>
<p>The comments describing the states is taken verbatim from the Java
Accessibility API 1.4 documentation.</p>
......
......@@ -26,9 +26,9 @@ module com { module sun { module star { module accessibility {
/** This structure lets an event give access to a change of a table model.
<p>The data members of the <type>AccessibleTableModelChange</type> structure
<p>The data members of the AccessibleTableModelChange structure
give access to the type and cell range of a change of a table model. See
<type>AccessibleTableModelChangeType</type> for details of the change
AccessibleTableModelChangeType for details of the change
type. The range of the affected rows, columns, and/or cells can be
obtained by accessing the other four data members.</p>
......@@ -37,11 +37,11 @@ module com { module sun { module star { module accessibility {
struct AccessibleTableModelChange
{
/** The type of the event as defined in
<type>AccessibleTableModelChangeType</type>.
AccessibleTableModelChangeType.
<p>The model change either inserted or deleted one or more rows
and/or columns or modified the content of a number of cells. See
<type>AccessibleTableModelChangeType</type> for details of the type
AccessibleTableModelChangeType for details of the type
of the model change.</p>
*/
short Type;
......
......@@ -27,7 +27,7 @@ module com { module sun { module star { module accessibility {
/** Type of a change made to a table model.
<p>The value of this constants group are used by the
<type>AccessibleTableModelChange</type> structure to specify the
AccessibleTableModelChange structure to specify the
type of change that has been made to a table model.</p>
<p>Two of the constants,
......@@ -44,7 +44,7 @@ constants AccessibleTableModelChangeType
{
/** One or more rows and/or columns have been inserted.