summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/scanner
diff options
context:
space:
mode:
authorJean-Tiare LE BIGOT <admin@jtlebi.fr>2012-08-11 13:22:07 -0400
committerDavid Tardon <dtardon@redhat.com>2012-08-12 19:29:16 +0200
commitfc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch)
tree8026ad5e9a05948f882f790675c0813c72cd42bf /offapi/com/sun/star/scanner
parent602f956d3231a093c9853d88fe5d5de2465f7112 (diff)
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'offapi/com/sun/star/scanner')
-rw-r--r--offapi/com/sun/star/scanner/ScanError.idl9
-rw-r--r--offapi/com/sun/star/scanner/ScannerContext.idl5
-rw-r--r--offapi/com/sun/star/scanner/ScannerException.idl4
-rw-r--r--offapi/com/sun/star/scanner/ScannerManager.idl3
-rw-r--r--offapi/com/sun/star/scanner/XScannerManager.idl8
-rw-r--r--offapi/com/sun/star/scanner/XScannerManager2.idl4
6 files changed, 0 insertions, 33 deletions
diff --git a/offapi/com/sun/star/scanner/ScanError.idl b/offapi/com/sun/star/scanner/ScanError.idl
index 04ab044f8d7d..5ff6a66c93e1 100644
--- a/offapi/com/sun/star/scanner/ScanError.idl
+++ b/offapi/com/sun/star/scanner/ScanError.idl
@@ -29,47 +29,39 @@
#define __com_sun_star_scanner_ScanError_idl__
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
/** enum ScanError describes error codes of scanner component
*/
published enum ScanError
{
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: ScanErrorNone,
/** ScanErrorNone: no error occurred
*/
ScanErrorNone,
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: ScannerNotAvailable,
/** ScannerNotAvailable: the requested device could not be opened
*/
ScannerNotAvailable,
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: ScanFailed,
/** ScanFailed: an error occurred during scanning
*/
ScanFailed,
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: ScanInProgress,
/** ScanInProgress: a scan is already in progress on this device that has
to end before a new one can be started
*/
ScanInProgress,
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: ScanCanceled,
/** ScanCanceled: the scan was canceled by the user
*/
ScanCanceled,
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScanError:: InvalidContext
/** InvalidContext: a device was requested that does not exist
*/
@@ -77,7 +69,6 @@ published enum ScanError
};
-//=============================================================================
}; }; }; };
diff --git a/offapi/com/sun/star/scanner/ScannerContext.idl b/offapi/com/sun/star/scanner/ScannerContext.idl
index 7a20a56778d0..1104e8c0bb54 100644
--- a/offapi/com/sun/star/scanner/ScannerContext.idl
+++ b/offapi/com/sun/star/scanner/ScannerContext.idl
@@ -20,22 +20,18 @@
#define __com_sun_star_scanner_ScannerContext_idl__
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
/** a scanner context is an identifier for a specific scanner device
*/
published struct ScannerContext
{
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScannerContext::ScannerName
/** ScannerName contains a user readable identification
*/
string ScannerName;
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScannerContext::InternalData
/** InternalData contains service private data and must not be changed
*/
@@ -43,7 +39,6 @@ published struct ScannerContext
};
-//=============================================================================
}; }; }; };
diff --git a/offapi/com/sun/star/scanner/ScannerException.idl b/offapi/com/sun/star/scanner/ScannerException.idl
index 5e9f77ae914b..8f1a8d83629f 100644
--- a/offapi/com/sun/star/scanner/ScannerException.idl
+++ b/offapi/com/sun/star/scanner/ScannerException.idl
@@ -23,17 +23,14 @@
#include <com/sun/star/scanner/ScanError.idl>
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
/** A ScannerException gets thrown if an object of type XScannerManager
could not complete a specific action.
*/
published exception ScannerException: com::sun::star::uno::Exception
{
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR ScannerException::Error
/** Error: contains the specific reason for failure
*/
@@ -41,7 +38,6 @@ published exception ScannerException: com::sun::star::uno::Exception
};
-//=============================================================================
}; }; }; };
diff --git a/offapi/com/sun/star/scanner/ScannerManager.idl b/offapi/com/sun/star/scanner/ScannerManager.idl
index f2965b295264..2a63a5ac1b99 100644
--- a/offapi/com/sun/star/scanner/ScannerManager.idl
+++ b/offapi/com/sun/star/scanner/ScannerManager.idl
@@ -33,11 +33,9 @@
#include <com/sun/star/scanner/XScannerManager.idl>
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
// DOCUMENTATION CHANGED FOR ScannerManager
/** ScannerManager provides a simple method to access scanner devices
(or other image producing devices)
@@ -47,7 +45,6 @@ module com { module sun { module star { module scanner {
*/
published service ScannerManager : XScannerManager;
-//=============================================================================
}; }; }; };
diff --git a/offapi/com/sun/star/scanner/XScannerManager.idl b/offapi/com/sun/star/scanner/XScannerManager.idl
index fb3852b6f04a..b5a4e4a6cf20 100644
--- a/offapi/com/sun/star/scanner/XScannerManager.idl
+++ b/offapi/com/sun/star/scanner/XScannerManager.idl
@@ -36,22 +36,18 @@
#include <com/sun/star/awt/XBitmap.idl>
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
/**
*/
published interface XScannerManager: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
// DOCUMENTATION CHANGED FOR XScannerManager::getAvailableScanners
/** returns all available scanner devices
*/
sequence<com::sun::star::scanner::ScannerContext> getAvailableScanners();
- //-------------------------------------------------------------------------
/** produce some kind of User Interface to let the user have a preview,
configure the scan area, etc., it
returns FALSE if user cancelled this process
@@ -59,7 +55,6 @@ published interface XScannerManager: com::sun::star::uno::XInterface
boolean configureScanner( [inout] com::sun::star::scanner::ScannerContext scanner_context )
raises( com::sun::star::scanner::ScannerException );
- //-------------------------------------------------------------------------
/**start the scanning process
listener will be called when scan is complete
the EventObject of the disposing call will contain
@@ -70,13 +65,11 @@ published interface XScannerManager: com::sun::star::uno::XInterface
[in] com::sun::star::lang::XEventListener listener )
raises( com::sun::star::scanner::ScannerException );
- //-------------------------------------------------------------------------
/**get the state of scanning after completion of scan
*/
com::sun::star::scanner::ScanError getError( [in] com::sun::star::scanner::ScannerContext scanner_context )
raises( com::sun::star::scanner::ScannerException );
- //-------------------------------------------------------------------------
/**get the image after completion of scan
*/
com::sun::star::awt::XBitmap getBitmap( [in] com::sun::star::scanner::ScannerContext scanner_context )
@@ -84,7 +77,6 @@ published interface XScannerManager: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/offapi/com/sun/star/scanner/XScannerManager2.idl b/offapi/com/sun/star/scanner/XScannerManager2.idl
index 74aee81c27c8..2c5c321e271b 100644
--- a/offapi/com/sun/star/scanner/XScannerManager2.idl
+++ b/offapi/com/sun/star/scanner/XScannerManager2.idl
@@ -32,11 +32,9 @@
#include <com/sun/star/scanner/ScannerManager.idl>
-//=============================================================================
module com { module sun { module star { module scanner {
-//=============================================================================
/**
Extension of <type>XScannerManager</type>.
@@ -45,7 +43,6 @@ module com { module sun { module star { module scanner {
*/
published interface XScannerManager2: com::sun::star::scanner::XScannerManager
{
- //-------------------------------------------------------------------------
/** produce some kind of User Interface to let the user have a preview,
configure the scan area, etc., it, and scan it
returns FALSE if user cancelled this process
@@ -56,7 +53,6 @@ published interface XScannerManager2: com::sun::star::scanner::XScannerManager
};
-//=============================================================================
}; }; }; };