Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP
2 : #define INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/inspection/XStringRepresentation.hpp"
9 : #include "com/sun/star/lang/IllegalArgumentException.hpp"
10 : #include "com/sun/star/script/XTypeConverter.hpp"
11 : #include "com/sun/star/uno/DeploymentException.hpp"
12 : #include "com/sun/star/uno/Exception.hpp"
13 : #include "com/sun/star/uno/RuntimeException.hpp"
14 : #include "com/sun/star/uno/XComponentContext.hpp"
15 : #include "com/sun/star/uno/Any.hxx"
16 : #include "com/sun/star/uno/Reference.hxx"
17 : #include "com/sun/star/uno/Sequence.hxx"
18 : #include "cppu/unotype.hxx"
19 : #include "rtl/ustring.h"
20 : #include "rtl/ustring.hxx"
21 :
22 : namespace com { namespace sun { namespace star { namespace inspection {
23 :
24 : class StringRepresentation {
25 : public:
26 0 : static ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::script::XTypeConverter >& TypeConverter) {
27 : assert(the_context.is());
28 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
29 0 : the_arguments[0] <<= TypeConverter;
30 0 : ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation > the_instance;
31 : try {
32 0 : the_instance = ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.inspection.StringRepresentation" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
33 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
34 0 : throw;
35 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
36 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation: " ) + the_exception.Message, the_context);
37 : }
38 0 : if (!the_instance.is()) {
39 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation" ), the_context);
40 : }
41 0 : return the_instance;
42 : }
43 :
44 0 : static ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation > createConstant(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::script::XTypeConverter >& TypeConverter, const ::rtl::OUString& Constant, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& Values) {
45 : assert(the_context.is());
46 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(3);
47 0 : the_arguments[0] <<= TypeConverter;
48 0 : the_arguments[1] <<= Constant;
49 0 : the_arguments[2] <<= Values;
50 0 : ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation > the_instance;
51 : try {
52 0 : the_instance = ::com::sun::star::uno::Reference< css::inspection::XStringRepresentation >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.inspection.StringRepresentation" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
53 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
54 0 : throw;
55 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
56 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation: " ) + the_exception.Message, the_context);
57 : }
58 0 : if (!the_instance.is()) {
59 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation" ), the_context);
60 : }
61 0 : return the_instance;
62 : }
63 :
64 : private:
65 : StringRepresentation(); // not implemented
66 : StringRepresentation(StringRepresentation &); // not implemented
67 : ~StringRepresentation(); // not implemented
68 : void operator =(StringRepresentation); // not implemented
69 : };
70 :
71 : } } } }
72 :
73 : #endif // INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP
|