Kaydet (Commit) 887b7f34 authored tarafından Tomas Hlavaty's avatar Tomas Hlavaty Kaydeden (comit) Michael Stahl

idl fix package names

üst 405f7ac2
...@@ -51,7 +51,7 @@ struct InterpretedData ...@@ -51,7 +51,7 @@ struct InterpretedData
/** /**
*/ */
data::XLabeledDataSequence Categories; com::sun::star::chart2::data::XLabeledDataSequence Categories;
}; };
} ; // chart2 } ; // chart2
......
...@@ -60,7 +60,7 @@ struct ScaleData ...@@ -60,7 +60,7 @@ struct ScaleData
XScaling Scaling; XScaling Scaling;
data::XLabeledDataSequence Categories; com::sun::star::chart2::data::XLabeledDataSequence Categories;
/** describes the type of the axis. /** describes the type of the axis.
......
...@@ -105,7 +105,7 @@ interface XChartDocument : ::com::sun::star::frame::XModel ...@@ -105,7 +105,7 @@ interface XChartDocument : ::com::sun::star::frame::XModel
<member>XDataReceiver::attachDataProvider</member> has been <member>XDataReceiver::attachDataProvider</member> has been
called. called.
*/ */
data::XDataProvider getDataProvider(); com::sun::star::chart2::data::XDataProvider getDataProvider();
/** sets a new component that is able to create different chart /** sets a new component that is able to create different chart
type templates (components of type type templates (components of type
......
...@@ -68,7 +68,7 @@ interface XChartTypeTemplate : ::com::sun::star::uno::XInterface ...@@ -68,7 +68,7 @@ interface XChartTypeTemplate : ::com::sun::star::uno::XInterface
<type>ChartTypeTemplate</type>. <type>ChartTypeTemplate</type>.
*/ */
XDiagram createDiagramByDataSource( XDiagram createDiagramByDataSource(
[in] data::XDataSource xDataSource, [in] com::sun::star::chart2::data::XDataSource xDataSource,
[in] sequence< com::sun::star::beans::PropertyValue > aArguments ); [in] sequence< com::sun::star::beans::PropertyValue > aArguments );
/** @return /** @return
...@@ -121,7 +121,7 @@ interface XChartTypeTemplate : ::com::sun::star::uno::XInterface ...@@ -121,7 +121,7 @@ interface XChartTypeTemplate : ::com::sun::star::uno::XInterface
*/ */
void changeDiagramData( void changeDiagramData(
[in] XDiagram xDiagram, [in] XDiagram xDiagram,
[in] data::XDataSource xDataSource, [in] com::sun::star::chart2::data::XDataSource xDataSource,
[in] sequence< com::sun::star::beans::PropertyValue > aArguments ); [in] sequence< com::sun::star::beans::PropertyValue > aArguments );
/** States whether the given diagram could have been created by /** States whether the given diagram could have been created by
......
...@@ -64,7 +64,7 @@ interface XDataInterpreter : ::com::sun::star::uno::XInterface ...@@ -64,7 +64,7 @@ interface XDataInterpreter : ::com::sun::star::uno::XInterface
creating new ones. creating new ones.
*/ */
InterpretedData interpretDataSource( InterpretedData interpretDataSource(
[in] data::XDataSource xSource, [in] com::sun::star::chart2::data::XDataSource xSource,
[in] sequence< com::sun::star::beans::PropertyValue > aArguments, [in] sequence< com::sun::star::beans::PropertyValue > aArguments,
[in] sequence< XDataSeries > aSeriesToReUse ); [in] sequence< XDataSeries > aSeriesToReUse );
...@@ -91,7 +91,7 @@ interface XDataInterpreter : ::com::sun::star::uno::XInterface ...@@ -91,7 +91,7 @@ interface XDataInterpreter : ::com::sun::star::uno::XInterface
<member>interpretDataSource</member>( <code>xSource</code> ), <member>interpretDataSource</member>( <code>xSource</code> ),
the result of this method should be <code>xSource</code>.</p> the result of this method should be <code>xSource</code>.</p>
*/ */
data::XDataSource mergeInterpretedData( [in] InterpretedData aInterpretedData ); com::sun::star::chart2::data::XDataSource mergeInterpretedData( [in] InterpretedData aInterpretedData );
}; };
} ; // chart2 } ; // chart2
......
...@@ -98,7 +98,7 @@ interface XDiagram : ::com::sun::star::uno::XInterface ...@@ -98,7 +98,7 @@ interface XDiagram : ::com::sun::star::uno::XInterface
service <type>StandardDiagramCreationParameters</type>. service <type>StandardDiagramCreationParameters</type>.
</p> </p>
*/ */
void setDiagramData( [in] data::XDataSource xDataSource, void setDiagramData( [in] com::sun::star::chart2::data::XDataSource xDataSource,
[in] sequence< com::sun::star::beans::PropertyValue > aArguments ); [in] sequence< com::sun::star::beans::PropertyValue > aArguments );
}; };
......
...@@ -73,7 +73,7 @@ interface XInternalDataProvider : com::sun::star::chart2::data::XDataProvider ...@@ -73,7 +73,7 @@ interface XInternalDataProvider : com::sun::star::chart2::data::XDataProvider
labeled data sequence was created by cloning an existing one, labeled data sequence was created by cloning an existing one,
it has to be explicitly registered via this method.</p> it has to be explicitly registered via this method.</p>
*/ */
void registerDataSequenceForChanges( [in] data::XDataSequence xSeq ); void registerDataSequenceForChanges( [in] com::sun::star::chart2::data::XDataSequence xSeq );
/** insert an additional sequence for categories nLevel>=1; /** insert an additional sequence for categories nLevel>=1;
categories at level 0 are always present and cannot be inserted or deleted categories at level 0 are always present and cannot be inserted or deleted
......
...@@ -77,10 +77,10 @@ interface XFastSAXSerializable ...@@ -77,10 +77,10 @@ interface XFastSAXSerializable
@throws com::sun::star::xml::sax::SAXException @throws com::sun::star::xml::sax::SAXException
if serializing the XML document fails if serializing the XML document fails
*/ */
void fastSerialize([in] sax::XFastDocumentHandler handler, void fastSerialize([in] com::sun::star::xml::sax::XFastDocumentHandler handler,
[in] sax::XFastTokenHandler tokenHandler, [in] com::sun::star::xml::sax::XFastTokenHandler tokenHandler,
[in] sequence< beans::StringPair > namespaces, [in] sequence< com::sun::star::beans::StringPair > namespaces,
[in] sequence< beans::Pair<string, long> > registerNamespaces) [in] sequence< com::sun::star::beans::Pair<string, long> > registerNamespaces)
raises( com::sun::star::xml::sax::SAXException ); raises( com::sun::star::xml::sax::SAXException );
}; };
......
...@@ -67,8 +67,8 @@ interface XSAXSerializable ...@@ -67,8 +67,8 @@ interface XSAXSerializable
@throws com::sun::star::xml::sax::SAXException @throws com::sun::star::xml::sax::SAXException
if serializing the XML document fails if serializing the XML document fails
*/ */
void serialize([in] sax::XDocumentHandler handler, void serialize([in] com::sun::star::xml::sax::XDocumentHandler handler,
[in] sequence< beans::StringPair > namespaces) [in] sequence< com::sun::star::beans::StringPair > namespaces)
raises( com::sun::star::xml::sax::SAXException ); raises( com::sun::star::xml::sax::SAXException );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment