~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to editor/settings/api/apichanges.xml

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
4
 
 
5
Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
6
 
 
7
 
 
8
The contents of this file are subject to the terms of either the GNU
 
9
General Public License Version 2 only ("GPL") or the Common
 
10
Development and Distribution License("CDDL") (collectively, the
 
11
"License"). You may not use this file except in compliance with the
 
12
License. You can obtain a copy of the License at
 
13
http://www.netbeans.org/cddl-gplv2.html
 
14
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
15
specific language governing permissions and limitations under the
 
16
License.  When distributing the software, include this License Header
 
17
Notice in each file and include the License file at
 
18
nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
19
particular file as subject to the "Classpath" exception as provided
 
20
by Sun in the GPL Version 2 section of the License file that
 
21
accompanied this code. If applicable, add the following below the
 
22
License Header, with the fields enclosed by brackets [] replaced by
 
23
your own identifying information:
 
24
"Portions Copyrighted [year] [name of copyright owner]"
 
25
 
 
26
Contributor(s):
 
27
 
 
28
The Original Software is NetBeans. The Initial Developer of the Original
 
29
Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
30
Microsystems, Inc. All Rights Reserved.
 
31
 
 
32
If you wish your version of this file to be governed by only the CDDL
 
33
or only the GPL Version 2, indicate your decision by adding
 
34
"[Contributor] elects to include this software in this distribution
 
35
under the [CDDL or GPL Version 2] license." If you do not indicate a
 
36
single choice of license, a recipient has the option to distribute
 
37
your version of this file under either the CDDL, the GPL Version 2 or
 
38
to extend the choice of license to its licensees as provided above.
 
39
However, if you add GPL Version 2 code and therefore, elected the GPL
 
40
Version 2 license, then the option applies only if the new code is
 
41
made subject to such option by the copyright holder.
 
42
-->
 
43
<?xml-stylesheet type="text/xml" href="../../../nbbuild/javadoctools/apichanges.xsl"?>
 
44
<!DOCTYPE apichanges PUBLIC "-//NetBeans//DTD API changes list 1.0//EN" "../../../nbbuild/javadoctools/apichanges.dtd">
 
45
 
 
46
<!--
 
47
 
 
48
INFO FOR PEOPLE ADDING CHANGES:
 
49
 
 
50
Check the DTD (apichanges.dtd) for details on the syntax. You do not
 
51
need to regenerate the HTML, as this is part of Javadoc generation; just
 
52
change the XML. Rough syntax of a change (several parts optional):
 
53
 
 
54
<change>
 
55
    <api name="compiler"/>
 
56
    <summary>Some brief description here, can use <b>XHTML</b></summary>
 
57
    <version major="1" minor="99"/>
 
58
    <date day="13" month="6" year="2001"/>
 
59
    <author login="jrhacker"/>
 
60
    <compatibility addition="yes"/>
 
61
    <description>
 
62
        The main description of the change here.
 
63
        Again can use full <b>XHTML</b> as needed.
 
64
    </description>
 
65
    <class package="org.openide.compiler" name="DoWhatIWantCompiler"/>
 
66
    <issue number="14309"/>
 
67
</change>
 
68
 
 
69
Also permitted elements: <package>, <branch>. <version> is API spec
 
70
version, recommended for all new changes. <compatibility> should say
 
71
if things were added/modified/deprecated/etc. and give all information
 
72
related to upgrading old code. List affected top-level classes and
 
73
link to issue numbers if applicable. See the DTD for more details.
 
74
 
 
75
Changes need not be in any particular order, they are sorted in various
 
76
ways by the stylesheet anyway.
 
77
 
 
78
Dates are assumed to mean "on the trunk". If you *also* make the same
 
79
change on a stabilization branch, use the <branch> tag to indicate this
 
80
and explain why the change was made on a branch in the <description>.
 
81
 
 
82
Please only change this file on the trunk! Rather: you can change it
 
83
on branches if you want, but these changes will be ignored; only the
 
84
trunk version of this file is important.
 
85
 
 
86
Deprecations do not count as incompatible, assuming that code using the
 
87
deprecated calls continues to see their documented behavior. But do
 
88
specify deprecation="yes" in <compatibility>.
 
89
 
 
90
This file is not a replacement for Javadoc: it is intended to list changes,
 
91
not describe the complete current behavior, for which ordinary documentation
 
92
is the proper place.
 
93
 
 
94
-->
 
95
 
 
96
<apichanges>
 
97
 
 
98
    <!-- First, a list of API names you may use: -->
 
99
    <apidefs>
 
100
        <apidef name="settings">Editor Settings API</apidef>
 
101
        <!-- etc. -->
 
102
    </apidefs>
 
103
 
 
104
    <!-- ACTUAL CHANGES BEGIN HERE: -->
 
105
 
 
106
    <changes>
 
107
        <change id="added.EditorStyleConstants.Tooltip">
 
108
            <summary>Added EditorStyleConstants.Tooltip</summary>
 
109
            <version major="1" minor="12"/>
 
110
            <date day="13" month="9" year="2007"/>
 
111
            <author login="vstejskal"/>
 
112
            <compatibility binary="compatible" source="compatible" semantic="compatible" addition="yes" deprecation="no" deletion="no" modification="no" />
 
113
            <description>
 
114
            <p>
 
115
                The <code>EditorStyleConstants.Tooltip</code> constant was added
 
116
                allowing to specify tooltips in highlighting layers.
 
117
            </p>
 
118
            </description>
 
119
            <issue number="107107"/>
 
120
        </change>
 
121
 
 
122
        <change id="added.CodeTemplateDescription.getUniqueId">
 
123
            <summary>Added CodeTemplateDescription.getUniqueId</summary>
 
124
            <version major="1" minor="11"/>
 
125
            <date day="15" month="6" year="2007"/>
 
126
            <author login="vstejskal"/>
 
127
            <compatibility binary="compatible" source="compatible" semantic="compatible" addition="yes" deprecation="no" deletion="no" modification="no" />
 
128
            <description>
 
129
            <p>
 
130
                The <code>CodeTemplateDescription.getUniqueId</code> method was added
 
131
                and the constructor was extended to accept <code>uniqueId</code>
 
132
                parameter.
 
133
            </p>
 
134
            </description>
 
135
        </change>
 
136
 
 
137
        <change id="CodeTemplateSettings.getCodeTemplates">
 
138
            <summary>CodeTemplateSettings.getCodeTemplates siganture changed</summary>
 
139
            <version major="1" minor="10"/>
 
140
            <date day="10" month="6" year="2007"/>
 
141
            <author login="vstejskal"/>
 
142
            <compatibility binary="incompatible" source="incompatible" semantic="compatible" addition="no" deprecation="no" deletion="no" modification="yes" />
 
143
            <description>
 
144
            <p>
 
145
                The <code>CodeTemplateSettings.getCodeTemplates</code> signature was changed
 
146
                to return <code>Collection&lt;CodeTemplateDescription&gt;</code> instead
 
147
                of <code>List</code>. Although an incompatible change this class
 
148
                had never been functional and should not have been used by anybody.
 
149
            </p>
 
150
            </description>
 
151
        </change>
 
152
 
 
153
        <change id="AttributesUtilities">
 
154
            <summary>AttributesUtilities added</summary>
 
155
            <version major="1" minor="9"/>
 
156
            <date day="26" month="1" year="2007"/>
 
157
            <author login="vstejskal"/>
 
158
            <compatibility binary="compatible" source="compatible" semantic="compatible" addition="yes" deprecation="no" deletion="no" modification="no" />
 
159
            <description>
 
160
            <p>
 
161
                The <code>AttributesUtilities</code> class has been added.
 
162
            </p>
 
163
            </description>
 
164
        </change>
 
165
 
 
166
        <change id="FontColorSettings.PROP_FONT_COLORS">
 
167
            <summary>Deprecating FontColorSettings.PROP_FONT_COLORS</summary>
 
168
            <version major="1" minor="8"/>
 
169
            <date day="4" month="1" year="2007"/>
 
170
            <author login="vstejskal"/>
 
171
            <compatibility binary="compatible" source="compatible" semantic="compatible" addition="no" deprecation="yes" deletion="no" modification="no" />
 
172
            <description>
 
173
            <p>
 
174
                Deprecating <code>FontColorSettings.PROP_FONT_COLORS</code>. It
 
175
                should have never been made public in the first place. Nobody can
 
176
                listen on this property anyway and the general contract is that
 
177
                settings instances in MimeLookup are immutable and if anything
 
178
                changes the whole instance (e.g. <code>FontColorSettings</code>) is replaced.
 
179
            </p>
 
180
            </description>
 
181
        </change>
 
182
 
 
183
        <change id="org.netbeans.api.editor.settings.implementation">
 
184
            <summary>OpenIDE-Module-Needs: org.netbeans.api.editor.settings.implementation</summary>
 
185
            <version major="1" minor="7"/>
 
186
            <date day="13" month="11" year="2006"/>
 
187
            <author login="vstejskal"/>
 
188
            <compatibility addition="yes" binary="compatible" source="compatible" semantic="compatible" deprecation="no" deletion="no" modification="no" />
 
189
            <description>
 
190
            <p>
 
191
                The module is now autoload and it needs the <code>org.netbeans.api.editor.settings.implementation</code>
 
192
                token. This token is provided by the <code>editor/settings/storage</code> module
 
193
                by default.
 
194
            </p>
 
195
            </description>
 
196
        </change>
 
197
 
 
198
        <change id="FontColorNames-SimpleValueNames-constructors">
 
199
            <summary>Private constructors in FontColorNames and SimpleValueNames</summary>
 
200
            <version major="1" minor="6"/>
 
201
            <date day="8" month="11" year="2006"/>
 
202
            <author login="vstejskal"/>
 
203
            <compatibility addition="no" binary="incompatible" source="incompatible" semantic="compatible" deprecation="no" deletion="yes" modification="no" />
 
204
            <description>
 
205
            <p>
 
206
                The FontColorNames and SimpleValueNames classes used to
 
207
                have a default construtor, even though it had never made
 
208
                sense to create instances of them. The default constructors
 
209
                have been removed and a privat noargs constructor has been added
 
210
                to both of them preventing an accidental instantiation.
 
211
            </p>
 
212
            </description>
 
213
        </change>
 
214
 
 
215
        <change id="editor-settings">
 
216
            <summary>Editor Settings API created</summary>
 
217
            <version major="1" minor="2"/>
 
218
            <date day="26" month="8" year="2005"/>
 
219
            <author login="mroskanin"/>
 
220
            <compatibility addition="yes" binary="compatible" semantic="compatible" />
 
221
            <description>
 
222
            <p>
 
223
                Editor Settings API was created. 
 
224
                It defines settings classes, which can be looked up via mimelookup.
 
225
            </p>
 
226
            </description>
 
227
            <issue number="59784"/>
 
228
        </change>
 
229
    </changes>
 
230
 
 
231
    <!-- Now the surrounding HTML text and document structure: -->
 
232
 
 
233
    <htmlcontents>
 
234
<!--
 
235
 
 
236
                            NO NO NO NO NO!
 
237
 
 
238
         ==============>    DO NOT EDIT ME!  <==============
 
239
 
 
240
          AUTOMATICALLY GENERATED FROM APICHANGES.XML, DO NOT EDIT
 
241
 
 
242
                SEE CHANGEME/apichanges.xml
 
243
 
 
244
-->
 
245
    <head>
 
246
      <title>Change History for the Editor Settings API</title>
 
247
      <link rel="stylesheet" href="prose.css" type="text/css"/>
 
248
    </head>
 
249
    <body>
 
250
 
 
251
<p class="overviewlink"><a href="overview-summary.html">Overview</a></p>
 
252
 
 
253
<h1>Introduction</h1>
 
254
 
 
255
<p>This document lists changes made to the <a href="@TOP@">Editor Settings
 
256
API</a>.</p>
 
257
 
 
258
<!-- The actual lists of changes, as summaries and details: -->
 
259
      <hr/>
 
260
      <standard-changelists module-code-name="org.netbeans.modules.editor.settings/1"/>
 
261
 
 
262
      <hr/><p>@FOOTER@</p>
 
263
 
 
264
    </body>
 
265
  </htmlcontents>
 
266
 
 
267
</apichanges>