Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_INSPECTION_OBJECTINSPECTOR_HPP
2 : #define INCLUDED_COM_SUN_STAR_INSPECTION_OBJECTINSPECTOR_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/inspection/XObjectInspector.hpp"
9 : #include "com/sun/star/inspection/XObjectInspectorModel.hpp"
10 : #include "com/sun/star/lang/IllegalArgumentException.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 ObjectInspector {
25 : public:
26 : static ::com::sun::star::uno::Reference< css::inspection::XObjectInspector > createDefault(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context) {
27 : assert(the_context.is());
28 : ::com::sun::star::uno::Reference< css::inspection::XObjectInspector > the_instance;
29 : try {
30 : the_instance = ::com::sun::star::uno::Reference< css::inspection::XObjectInspector >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.inspection.ObjectInspector" ), ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >(), the_context), ::com::sun::star::uno::UNO_QUERY);
31 : } catch (const ::com::sun::star::uno::RuntimeException &) {
32 : throw;
33 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
34 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.ObjectInspector of type com.sun.star.inspection.XObjectInspector: " ) + the_exception.Message, the_context);
35 : }
36 : if (!the_instance.is()) {
37 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.ObjectInspector of type com.sun.star.inspection.XObjectInspector" ), the_context);
38 : }
39 : return the_instance;
40 : }
41 :
42 0 : static ::com::sun::star::uno::Reference< css::inspection::XObjectInspector > createWithModel(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::inspection::XObjectInspectorModel >& Model) {
43 : assert(the_context.is());
44 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
45 0 : the_arguments[0] <<= Model;
46 0 : ::com::sun::star::uno::Reference< css::inspection::XObjectInspector > the_instance;
47 : try {
48 0 : the_instance = ::com::sun::star::uno::Reference< css::inspection::XObjectInspector >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.inspection.ObjectInspector" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
49 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
50 0 : throw;
51 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
52 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.ObjectInspector of type com.sun.star.inspection.XObjectInspector: " ) + the_exception.Message, the_context);
53 : }
54 0 : if (!the_instance.is()) {
55 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.inspection.ObjectInspector of type com.sun.star.inspection.XObjectInspector" ), the_context);
56 : }
57 0 : return the_instance;
58 : }
59 :
60 : private:
61 : ObjectInspector(); // not implemented
62 : ObjectInspector(ObjectInspector &); // not implemented
63 : ~ObjectInspector(); // not implemented
64 : void operator =(ObjectInspector); // not implemented
65 : };
66 :
67 : } } } }
68 :
69 : #endif // INCLUDED_COM_SUN_STAR_INSPECTION_OBJECTINSPECTOR_HPP
|