From ea71a05840f53158f669182c6e93de9f8348bbe5 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 27 Apr 2013 22:45:02 +0200 Subject: *api: convert bar sed -i 's,\([^<]*::[a-z][^<:]\+[^)]\),\1::\2(),g' Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a --- .../sun/star/bridge/oleautomation/BridgeSupplier.idl | 4 ++-- .../star/bridge/oleautomation/PropertyPutArgument.idl | 6 +++--- udkapi/com/sun/star/io/XAsyncOutputMonitor.idl | 18 +++++++++--------- udkapi/com/sun/star/java/XJavaVM.idl | 2 +- udkapi/com/sun/star/lang/MultiServiceFactory.idl | 2 +- udkapi/com/sun/star/lang/ServiceManager.idl | 4 ++-- udkapi/com/sun/star/lang/XComponent.idl | 2 +- udkapi/com/sun/star/lang/XConnectionPoint.idl | 4 ++-- .../uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl | 4 ++-- .../uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl | 4 ++-- 10 files changed, 25 insertions(+), 25 deletions(-) (limited to 'udkapi') diff --git a/udkapi/com/sun/star/bridge/oleautomation/BridgeSupplier.idl b/udkapi/com/sun/star/bridge/oleautomation/BridgeSupplier.idl index 59e1b2c0875c..44d6a70482a9 100644 --- a/udkapi/com/sun/star/bridge/oleautomation/BridgeSupplier.idl +++ b/udkapi/com/sun/star/bridge/oleautomation/BridgeSupplier.idl @@ -28,7 +28,7 @@ module com { module sun { module star { module bridge { module oleautomation { /** maps UNO types to oleautomation types and vice versa.

The function - XBridgeSupplier2::createBridge + com::sun::star::bridge::XBridgeSupplier2::createBridge() maps a value of a UNO or Automation type to the desired target type. If a UNO interface was mapped to IDispatch, then all objects (interfaces, structs) and other types which are obtained from that Automation @@ -36,7 +36,7 @@ module com { module sun { module star { module bridge { module oleautomation { if one provides an initial object which forms the root of all other objects, such as a service manager, then only that object needs to be explicitly mapped by a call to - XBridgeSupplier2::createBridge. + com::sun::star::bridge::XBridgeSupplier2::createBridge(). The same holds true if an automation object is mapped to an UNO interface.

diff --git a/udkapi/com/sun/star/bridge/oleautomation/PropertyPutArgument.idl b/udkapi/com/sun/star/bridge/oleautomation/PropertyPutArgument.idl index 6cd0fe2c70ac..93e6cd8455d5 100644 --- a/udkapi/com/sun/star/bridge/oleautomation/PropertyPutArgument.idl +++ b/udkapi/com/sun/star/bridge/oleautomation/PropertyPutArgument.idl @@ -31,13 +31,13 @@ module com { module sun { module star { module bridge { module oleautomation then it is accessed through the com::sun::star::script::XInvocation interface. The methods - XInvocation::setValue + com::sun::star::script::XInvocation::setValue() and - XInvocation::getValue + com::sun::star::script::XInvocation::getValue() are used to access properties which do not have additional arguments. To access a property with additional arguments, the method - XInvocation::invoke + com::sun::star::script::XInvocation::invoke() has to be used. The method implementation must decide, if the property is to be written or read so it can perform the proper operation on the Automation object. To make this decision, the diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl index f3f4fd7d64c6..e8363eb1e7c3 100644 --- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl +++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl @@ -28,42 +28,42 @@ module com { module sun { module star { module io { /** An optional companion interface to com::sun::star::io::XOutputStream that supports scenarios - where XOutputStream::writeBytes + where com::sun::star::io::XOutputStream::writeBytes() operates asynchronously and does not necessarily report any errors.

A typical scenario where this interface is useful is when an com::sun::star::io::XOutputStream is used to write to a file via NFS. Normally, any calls to - XOutputStream::writeBytes will + com::sun::star::io::XOutputStream::writeBytes() will execute asynchronously then, in that any potential errors might only be reported by later calls to - XOutputStream::writeBytes or - XOutputStream::closeOutput. If + com::sun::star::io::XOutputStream::writeBytes() or + com::sun::star::io::XOutputStream::closeOutput(). If such an output stream shall not be closed immediately after one or more calls - to XOutputStream::writeBytes, but + to com::sun::star::io::XOutputStream::writeBytes(), but the client wants to know as soon as possible whether writing was successful, then XAsyncOutputMonitor::waitForCompletion should be called after the series of calls to - XOutputStream::writeBytes.

+ com::sun::star::io::XOutputStream::writeBytes().

@since OOo 2.0 */ interface XAsyncOutputMonitor { /** waits for the completion of any previous calls to - XOutputStream::writeBytes, + com::sun::star::io::XOutputStream::writeBytes(), and reports potentially pending errors.

Calling this method is potentially expensive (even if the associated com::sun::star::io::XOutputStream represents a local file not accessed via NFS, for example). This method has a similar description to - XOutputStream::flush. + com::sun::star::io::XOutputStream::flush(). However, where the semantics of flush are rather vague, waitForCompletion has very specific semantics—it just blocks long enough so that any errors encountered during previous calls - to XOutputStream::writeBytes + to com::sun::star::io::XOutputStream::writeBytes() can reliably be reported. It specificially does not guarantee that any data have savely been stored on a stable physical medium, like a hard disk (and it is completely unspecified whether flush should diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl index 7e730366bf9c..43d141b7eb1a 100644 --- a/udkapi/com/sun/star/java/XJavaVM.idl +++ b/udkapi/com/sun/star/java/XJavaVM.idl @@ -30,7 +30,7 @@ module com { module sun { module star { module java { A UNO interface seems to be at the wrong abstraction level for this functionality (also, the C++ classes jvmaccess::VirtualMachine and jvmaccess::UnoVirtualMachine used by - XJavaVM::getJavaVM are not + com::sun::star::java::XJavaVM::getJavaVM() are not part of the public C++ UNO runtime API). This should probably be replaced by an appropriate C/C++ API. */ diff --git a/udkapi/com/sun/star/lang/MultiServiceFactory.idl b/udkapi/com/sun/star/lang/MultiServiceFactory.idl index ea8cb01fcb83..24e4fd4cc443 100644 --- a/udkapi/com/sun/star/lang/MultiServiceFactory.idl +++ b/udkapi/com/sun/star/lang/MultiServiceFactory.idl @@ -38,7 +38,7 @@ module com { module sun { module star { module lang { interface can be supported optionally. If it is suported, it is possible to enumerate all implementations that support the service specified with the argument of - XContentEnumerationAccess::createContentEnumeration. + com::sun::star::container::XContentEnumerationAccess::createContentEnumeration(). The enumerator returns interfaces. The type of the interface is not specified. Commonly this is XSingleComponentFactory.

*/ diff --git a/udkapi/com/sun/star/lang/ServiceManager.idl b/udkapi/com/sun/star/lang/ServiceManager.idl index bc801257df87..24f3559adf46 100644 --- a/udkapi/com/sun/star/lang/ServiceManager.idl +++ b/udkapi/com/sun/star/lang/ServiceManager.idl @@ -60,7 +60,7 @@ module com { module sun { module star { module lang {
XComponent (optional)
The service manager calls the method - XComponent::dispose + com::sun::star::lang::XComponent::dispose() on the factory when going down (i.e. it is commonly disposed by the component context).
@@ -103,7 +103,7 @@ published service ServiceManager

It is possible to enumerate all implementations that support the service specified with the argument of the - XContentEnumerationAccess::createContentEnumeration method. + com::sun::star::container::XContentEnumerationAccess::createContentEnumeration() method. The enumerator commonly returns XSingleComponentFactory interfaces.

diff --git a/udkapi/com/sun/star/lang/XComponent.idl b/udkapi/com/sun/star/lang/XComponent.idl index 31c7549b4b1a..7423937bb360 100644 --- a/udkapi/com/sun/star/lang/XComponent.idl +++ b/udkapi/com/sun/star/lang/XComponent.idl @@ -85,7 +85,7 @@ published interface XComponent: com::sun::star::uno::XInterface XComponent::addEventListener is called, the call will not fail with a com::sun::star::lang::DisposedException, but the caller will be notified via the - XEventListener::disposing + com::sun::star::lang::XEventListener::disposing() callback. This callback can occur synchronously within the XComponent::addEventListener call.

diff --git a/udkapi/com/sun/star/lang/XConnectionPoint.idl b/udkapi/com/sun/star/lang/XConnectionPoint.idl index cb052e45a24d..8848371130d8 100644 --- a/udkapi/com/sun/star/lang/XConnectionPoint.idl +++ b/udkapi/com/sun/star/lang/XConnectionPoint.idl @@ -118,7 +118,7 @@ published interface XConnectionPoint: com::sun::star::uno::XInterface

A few add...Listener methods need additional parameters to add listeners or throw exceptions. One of these methods is - XPropertySet::addPropertyChangeListener. + com::sun::star::beans::XPropertySet::addPropertyChangeListener(). We ignore the problem in this interface. A solution must be provided in an additional XConnectionPoint interface.

@@ -143,7 +143,7 @@ published interface XConnectionPoint: com::sun::star::uno::XInterface

A few remove...Listener methods need additional parameters to add listeners or throw exceptions. One of these methods - is XPropertySet::removePropertyChangeListener. + is com::sun::star::beans::XPropertySet::removePropertyChangeListener(). We ignore the problem in this interface. A solution must be provided in an additional XConnectionPoint interface.

diff --git a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl index aee75e8f1b77..ac9e4425cbbb 100644 --- a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl +++ b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl @@ -29,10 +29,10 @@ published interface XUriSchemeParser; URLs.

The argument scheme of method - XUriSchemeParser::parse must + com::sun::star::uri::XUriSchemeParser::parse() must always be equal to the string "vnd.sun.star.expand", ignoring case. The objects returned by - XUriSchemeParser::parse + com::sun::star::uri::XUriSchemeParser::parse() implement com::sun::star::uri::XVndSunStarExpandUrlReference.

diff --git a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl index 4a70406083c9..e23b584ec445 100644 --- a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl +++ b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl @@ -29,10 +29,10 @@ published interface XUriSchemeParser; URLs.

The argument scheme of method - XUriSchemeParser::parse must + com::sun::star::uri::XUriSchemeParser::parse() must always be equal to the string "vnd.sun.star.script", ignoring case. The objects returned by - XUriSchemeParser::parse + com::sun::star::uri::XUriSchemeParser::parse() implement com::sun::star::uri::XVndSunStarScriptUrlReference.

-- cgit