summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/beans
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-10 10:06:55 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-10 10:13:36 +0200
commitab02cebc9ae257bf1de4a2ab35c4508d246c6fb4 (patch)
treec6ea6e44b35d791c6b93155bb0a3891de5095c73 /udkapi/com/sun/star/beans
parentee83131e8bf27758c20392d78bac298cde1e5161 (diff)
Change back method parameter name spellings
...changing them is deemed incompatible, so best avoid such cosmetic changes. Change-Id: Id57d38721a4f3b83933fa13c509c20eacb95f903
Diffstat (limited to 'udkapi/com/sun/star/beans')
-rw-r--r--udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl4
-rw-r--r--udkapi/com/sun/star/beans/XMultiPropertySet.idl12
-rw-r--r--udkapi/com/sun/star/beans/XMultiPropertyStates.idl8
-rw-r--r--udkapi/com/sun/star/beans/XPropertySetInfo.idl4
-rw-r--r--udkapi/com/sun/star/beans/XPropertyState.idl4
5 files changed, 16 insertions, 16 deletions
diff --git a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl
index e2fbf62d9a43..079e6614175c 100644
--- a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl
+++ b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl
@@ -66,7 +66,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa
<p> Unknown properties are ignored. </p>
- @param HierarchicalPropertyNames
+ @param aHierarchicalPropertyNames
This parameter specifies the names of the properties.
@param Values
@@ -93,7 +93,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa
*/
- void setHierarchicalPropertyValues( [in] sequence<string> HierarchicalPropertyNames,
+ void setHierarchicalPropertyValues( [in] sequence<string> aHierarchicalPropertyNames,
[in] sequence<any> Values )
raises( com::sun::star::beans::PropertyVetoException,
com::sun::star::lang::IllegalArgumentException,
diff --git a/udkapi/com/sun/star/beans/XMultiPropertySet.idl b/udkapi/com/sun/star/beans/XMultiPropertySet.idl
index 409be2bfbbfe..c49b9a0216b7 100644
--- a/udkapi/com/sun/star/beans/XMultiPropertySet.idl
+++ b/udkapi/com/sun/star/beans/XMultiPropertySet.idl
@@ -123,26 +123,26 @@ published interface XMultiPropertySet: com::sun::star::uno::XInterface
<p>It is suggested to allow multiple registration of the same listener,
thus for each time a listener is added, it has to be removed.
- @param Listener
+ @param xListener
contains the listener to be removed.
@see addPropertiesChangeListener
*/
void removePropertiesChangeListener(
- [in] com::sun::star::beans::XPropertiesChangeListener Listener );
+ [in] com::sun::star::beans::XPropertiesChangeListener xListener );
/** fires a sequence of PropertyChangeEvents to the specified
listener.
- @param PropertyNames
+ @param aPropertyNames
specifies the sorted names of the properties.
- @param Listener
+ @param xListener
contains the listener for the property change events.
*/
- void firePropertiesChangeEvent( [in] sequence<string> PropertyNames,
- [in] com::sun::star::beans::XPropertiesChangeListener Listener );
+ void firePropertiesChangeEvent( [in] sequence<string> aPropertyNames,
+ [in] com::sun::star::beans::XPropertiesChangeListener xListener );
};
diff --git a/udkapi/com/sun/star/beans/XMultiPropertyStates.idl b/udkapi/com/sun/star/beans/XMultiPropertyStates.idl
index 4e970ad4d4ee..30c4652c1fef 100644
--- a/udkapi/com/sun/star/beans/XMultiPropertyStates.idl
+++ b/udkapi/com/sun/star/beans/XMultiPropertyStates.idl
@@ -70,14 +70,14 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface
the change events are fired. If it is a constrained property, you
must fire the vetoable event before you change the property value. </p>
- @param PropertyNames
+ @param aPropertyNames
specifies the names of the properties. All names must be unique.
This sequence must be alphabetically sorted.
@throws UnknownPropertyException
if one of the properties does not exist.
*/
- void setPropertiesToDefault( [in] sequence<string> PropertyNames )
+ void setPropertiesToDefault( [in] sequence<string> aPropertyNames )
raises( com::sun::star::beans::UnknownPropertyException );
/** @returns
@@ -87,7 +87,7 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface
then the return type at the corresponding position in the
sequence returned is `void`. </p>
- @param PropertyNames
+ @param aPropertyNames
specifies the names of the properties. All names must be unique.
This sequence must be alphabetically sorted.
@@ -100,7 +100,7 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface
com::sun::star::lang::WrappedTargetException.
*/
sequence<any> getPropertyDefaults(
- [in] sequence<string> PropertyNames )
+ [in] sequence<string> aPropertyNames )
raises( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException );
};
diff --git a/udkapi/com/sun/star/beans/XPropertySetInfo.idl b/udkapi/com/sun/star/beans/XPropertySetInfo.idl
index 7e3f37e3eda3..fb368b21f940 100644
--- a/udkapi/com/sun/star/beans/XPropertySetInfo.idl
+++ b/udkapi/com/sun/star/beans/XPropertySetInfo.idl
@@ -55,13 +55,13 @@ published interface XPropertySetInfo: com::sun::star::uno::XInterface
/** @returns
the property with the specified name from the object.
- @param Name
+ @param aName
specifies the name of the property.
@throws UnknownPropertyException
if the property does not exist.
*/
- com::sun::star::beans::Property getPropertyByName( [in] string Name )
+ com::sun::star::beans::Property getPropertyByName( [in] string aName )
raises( com::sun::star::beans::UnknownPropertyException );
diff --git a/udkapi/com/sun/star/beans/XPropertyState.idl b/udkapi/com/sun/star/beans/XPropertyState.idl
index 68f8d527c880..fa809164a0ec 100644
--- a/udkapi/com/sun/star/beans/XPropertyState.idl
+++ b/udkapi/com/sun/star/beans/XPropertyState.idl
@@ -69,14 +69,14 @@ published interface XPropertyState: com::sun::star::uno::XInterface
<p>The order of the states is correlating to the order of the
given property names. </p>
- @param PropertyNames
+ @param aPropertyName
contains the sequence of property names.
@throws UnknownPropertyException
if one property does not exist.
*/
sequence<com::sun::star::beans::PropertyState> getPropertyStates(
- [in] sequence<string> PropertyNames )
+ [in] sequence<string> aPropertyName )
raises( com::sun::star::beans::UnknownPropertyException );