diff options
Diffstat (limited to 'offapi/com/sun/star/rendering/XPolyPolygon2D.idl')
-rw-r--r-- | offapi/com/sun/star/rendering/XPolyPolygon2D.idl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/offapi/com/sun/star/rendering/XPolyPolygon2D.idl b/offapi/com/sun/star/rendering/XPolyPolygon2D.idl index 86b24b721..2c19e38d4 100644 --- a/offapi/com/sun/star/rendering/XPolyPolygon2D.idl +++ b/offapi/com/sun/star/rendering/XPolyPolygon2D.idl @@ -1,7 +1,7 @@ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * + * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite @@ -27,15 +27,15 @@ #ifndef __com_sun_star_rendering_XPolyPolygon2D_idl__ #define __com_sun_star_rendering_XPolyPolygon2D_idl__ -#ifndef __com_sun_star_uno_XInterface_idl__ -#include <com/sun/star/uno/XInterface.idl> -#endif +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif #ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ #include <com/sun/star/lang/IndexOutOfBoundsException.idl> -#endif +#endif #ifndef __com_sun_star_lang_IllegalArgumentException_idl__ #include <com/sun/star/lang/IllegalArgumentException.idl> -#endif +#endif #ifndef __com_sun_star_rendering_FillRule_idl__ #include <com/sun/star/rendering/FillRule.idl> #endif @@ -49,9 +49,9 @@ module com { module sun { module star { module rendering { @since OOo 2.0 */ -interface XPolyPolygon2D : ::com::sun::star::uno::XInterface +published interface XPolyPolygon2D : ::com::sun::star::uno::XInterface { - /** Add the specified poly-polygon at the given position. + /** Add the specified poly-polygon at the given position. One can do symbolic path construction with this method. The poly-polygons added by this method are not joined in the sense @@ -82,7 +82,7 @@ interface XPolyPolygon2D : ::com::sun::star::uno::XInterface <type>XLinePolyPolygon2D</type>). */ void addPolyPolygon( [in] ::com::sun::star::geometry::RealPoint2D position, [in] XPolyPolygon2D polyPolygon ) - raises (com::sun::star::lang::IllegalArgumentException); + raises (com::sun::star::lang::IllegalArgumentException); //------------------------------------------------------------------------- @@ -99,7 +99,7 @@ interface XPolyPolygon2D : ::com::sun::star::uno::XInterface for. Must be in the range [0,getNumberOfPolygons()-1]. */ long getNumberOfPolygonPoints( [in] long polygon ) - raises (com::sun::star::lang::IndexOutOfBoundsException); + raises (com::sun::star::lang::IndexOutOfBoundsException); //------------------------------------------------------------------------- @@ -120,7 +120,7 @@ interface XPolyPolygon2D : ::com::sun::star::uno::XInterface /** Query whether the specified polygon outline is closed. */ boolean isClosed( [in] long index ) - raises (com::sun::star::lang::IndexOutOfBoundsException); + raises (com::sun::star::lang::IndexOutOfBoundsException); //------------------------------------------------------------------------- @@ -128,7 +128,7 @@ interface XPolyPolygon2D : ::com::sun::star::uno::XInterface as the index to affect all polygons of this poly-polygon. */ void setClosed( [in] long index, [in] boolean closedState ) - raises (com::sun::star::lang::IndexOutOfBoundsException); + raises (com::sun::star::lang::IndexOutOfBoundsException); }; }; }; }; }; |