1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef ARY_DISDOCUM_HXX
30 #define ARY_DISDOCUM_HXX
51 class DT_SeeAlsoAtTag
;
52 class DT_ParameterAtTag
;
65 class DocumentationDisplay
69 virtual ~DocumentationDisplay() { }
71 virtual void Display_TextToken(
72 const csi::dsapi::DT_TextToken
&
74 virtual void Display_White() = 0;
75 virtual void Display_MupType(
76 const csi::dsapi::DT_MupType
& i_rToken
) = 0;
77 virtual void Display_MupMember(
78 const csi::dsapi::DT_MupMember
&
80 virtual void Display_MupConst(
81 const csi::dsapi::DT_MupConst
&
83 virtual void Display_Style(
84 const csi::dsapi::DT_Style
& i_rToken
) = 0;
85 virtual void Display_EOL() = 0;
86 virtual void Display_StdAtTag(
87 const csi::dsapi::DT_StdAtTag
&
89 virtual void Display_SeeAlsoAtTag(
90 const csi::dsapi::DT_SeeAlsoAtTag
&
92 virtual void Display_ParameterAtTag(
93 const csi::dsapi::DT_ParameterAtTag
&
95 virtual void Display_SinceAtTag(
96 const csi::dsapi::DT_SinceAtTag
&
101 class DocuTag_Display
: public DocumentationDisplay
104 // Dummies, implemented in source\ary_i\kernel\ci_atag2.cxx
105 virtual void Display_TextToken(
106 const csi::dsapi::DT_TextToken
&
108 virtual void Display_White();
109 virtual void Display_MupType(
110 const csi::dsapi::DT_MupType
& i_rToken
);
111 virtual void Display_MupMember(
112 const csi::dsapi::DT_MupMember
&
114 virtual void Display_MupConst(
115 const csi::dsapi::DT_MupConst
&
117 virtual void Display_Style(
118 const csi::dsapi::DT_Style
& i_rToken
);
119 virtual void Display_EOL();
122 class DocuText_Display
: public DocumentationDisplay
125 // Dummies, implemented in source\ary_i\kernel\ci_text2.cxx
126 virtual void Display_StdAtTag(
127 const csi::dsapi::DT_StdAtTag
&
129 virtual void Display_SeeAlsoAtTag(
130 const csi::dsapi::DT_SeeAlsoAtTag
&
132 virtual void Display_ParameterAtTag(
133 const csi::dsapi::DT_ParameterAtTag
&
135 virtual void Display_SinceAtTag(
136 const csi::dsapi::DT_SinceAtTag
&
148 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */