1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: disdocum.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef ARY_DISDOCUM_HXX
32 #define ARY_DISDOCUM_HXX
53 class DT_SeeAlsoAtTag
;
54 class DT_ParameterAtTag
;
67 class DocumentationDisplay
71 virtual ~DocumentationDisplay() { }
73 virtual void Display_TextToken(
74 const csi::dsapi::DT_TextToken
&
76 virtual void Display_White() = 0;
77 virtual void Display_MupType(
78 const csi::dsapi::DT_MupType
& i_rToken
) = 0;
79 virtual void Display_MupMember(
80 const csi::dsapi::DT_MupMember
&
82 virtual void Display_MupConst(
83 const csi::dsapi::DT_MupConst
&
85 virtual void Display_Style(
86 const csi::dsapi::DT_Style
& i_rToken
) = 0;
87 virtual void Display_EOL() = 0;
88 virtual void Display_StdAtTag(
89 const csi::dsapi::DT_StdAtTag
&
91 virtual void Display_SeeAlsoAtTag(
92 const csi::dsapi::DT_SeeAlsoAtTag
&
94 virtual void Display_ParameterAtTag(
95 const csi::dsapi::DT_ParameterAtTag
&
97 virtual void Display_SinceAtTag(
98 const csi::dsapi::DT_SinceAtTag
&
103 class DocuTag_Display
: public DocumentationDisplay
106 // Dummies, implemented in source\ary_i\kernel\ci_atag2.cxx
107 virtual void Display_TextToken(
108 const csi::dsapi::DT_TextToken
&
110 virtual void Display_White();
111 virtual void Display_MupType(
112 const csi::dsapi::DT_MupType
& i_rToken
);
113 virtual void Display_MupMember(
114 const csi::dsapi::DT_MupMember
&
116 virtual void Display_MupConst(
117 const csi::dsapi::DT_MupConst
&
119 virtual void Display_Style(
120 const csi::dsapi::DT_Style
& i_rToken
);
121 virtual void Display_EOL();
124 class DocuText_Display
: public DocumentationDisplay
127 // Dummies, implemented in source\ary_i\kernel\ci_text2.cxx
128 virtual void Display_StdAtTag(
129 const csi::dsapi::DT_StdAtTag
&
131 virtual void Display_SeeAlsoAtTag(
132 const csi::dsapi::DT_SeeAlsoAtTag
&
134 virtual void Display_ParameterAtTag(
135 const csi::dsapi::DT_ParameterAtTag
&
137 virtual void Display_SinceAtTag(
138 const csi::dsapi::DT_SinceAtTag
&