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

« back to all changes in this revision

Viewing changes to apisupport/project/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
<!-- Search for CHANGEME in this document when copying and using it: -->
 
3
<!--
 
4
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
5
 
 
6
Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
7
 
 
8
 
 
9
The contents of this file are subject to the terms of either the GNU
 
10
General Public License Version 2 only ("GPL") or the Common
 
11
Development and Distribution License("CDDL") (collectively, the
 
12
"License"). You may not use this file except in compliance with the
 
13
License. You can obtain a copy of the License at
 
14
http://www.netbeans.org/cddl-gplv2.html
 
15
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
16
specific language governing permissions and limitations under the
 
17
License.  When distributing the software, include this License Header
 
18
Notice in each file and include the License file at
 
19
nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
20
particular file as subject to the "Classpath" exception as provided
 
21
by Sun in the GPL Version 2 section of the License file that
 
22
accompanied this code. If applicable, add the following below the
 
23
License Header, with the fields enclosed by brackets [] replaced by
 
24
your own identifying information:
 
25
"Portions Copyrighted [year] [name of copyright owner]"
 
26
 
 
27
Contributor(s):
 
28
 
 
29
The Original Software is NetBeans. The Initial Developer of the Original
 
30
Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
31
Microsystems, Inc. All Rights Reserved.
 
32
 
 
33
If you wish your version of this file to be governed by only the CDDL
 
34
or only the GPL Version 2, indicate your decision by adding
 
35
"[Contributor] elects to include this software in this distribution
 
36
under the [CDDL or GPL Version 2] license." If you do not indicate a
 
37
single choice of license, a recipient has the option to distribute
 
38
your version of this file under either the CDDL, the GPL Version 2 or
 
39
to extend the choice of license to its licensees as provided above.
 
40
However, if you add GPL Version 2 code and therefore, elected the GPL
 
41
Version 2 license, then the option applies only if the new code is
 
42
made subject to such option by the copyright holder.
 
43
-->
 
44
<?xml-stylesheet type="text/xml" href="CHANGEME/nbbuild/javadoctools/apichanges.xsl"?>
 
45
<!DOCTYPE apichanges PUBLIC "-//NetBeans//DTD API changes list 1.0//EN" "../../nbbuild/javadoctools/apichanges.dtd">
 
46
 
 
47
<!--
 
48
 
 
49
INFO FOR PEOPLE ADDING CHANGES:
 
50
 
 
51
Check the DTD (apichanges.dtd) for details on the syntax. You do not
 
52
need to regenerate the HTML, as this is part of Javadoc generation; just
 
53
change the XML. Rough syntax of a change (several parts optional):
 
54
 
 
55
<change>
 
56
    <api name="compiler"/>
 
57
    <summary>Some brief description here, can use <b>XHTML</b></summary>
 
58
    <version major="1" minor="99"/>
 
59
    <date day="13" month="6" year="2001"/>
 
60
    <author login="jrhacker"/>
 
61
    <compatibility addition="yes"/>
 
62
    <description>
 
63
        The main description of the change here.
 
64
        Again can use full <b>XHTML</b> as needed.
 
65
    </description>
 
66
    <class package="org.openide.compiler" name="DoWhatIWantCompiler"/>
 
67
    <issue number="14309"/>
 
68
</change>
 
69
 
 
70
Also permitted elements: <package>, <branch>. <version> is API spec
 
71
version, recommended for all new changes. <compatibility> should say
 
72
if things were added/modified/deprecated/etc. and give all information
 
73
related to upgrading old code. List affected top-level classes and
 
74
link to issue numbers if applicable. See the DTD for more details.
 
75
 
 
76
Changes need not be in any particular order, they are sorted in various
 
77
ways by the stylesheet anyway.
 
78
 
 
79
Dates are assumed to mean "on the trunk". If you *also* make the same
 
80
change on a stabilization branch, use the <branch> tag to indicate this
 
81
and explain why the change was made on a branch in the <description>.
 
82
 
 
83
Please only change this file on the trunk! Rather: you can change it
 
84
on branches if you want, but these changes will be ignored; only the
 
85
trunk version of this file is important.
 
86
 
 
87
Deprecations do not count as incompatible, assuming that code using the
 
88
deprecated calls continues to see their documented behavior. But do
 
89
specify deprecation="yes" in <compatibility>.
 
90
 
 
91
This file is not a replacement for Javadoc: it is intended to list changes,
 
92
not describe the complete current behavior, for which ordinary documentation
 
93
is the proper place.
 
94
 
 
95
-->
 
96
 
 
97
<apichanges>
 
98
 
 
99
    <!-- First, a list of API names you may use: -->
 
100
    <apidefs>
 
101
        <apidef name="apisupport_spi">Netbeans Modules APISupport SPI</apidef>
 
102
        <!-- etc. -->
 
103
    </apidefs>
 
104
 
 
105
    <!-- ACTUAL CHANGES BEGIN HERE: -->
 
106
 
 
107
    <changes>
 
108
        <change>
 
109
            <api name="apisupport_spi"/>
 
110
            <summary>Introduced NodeFactoryUtils</summary>
 
111
            <version major="1" minor="16"/>
 
112
            <date day="15" month="3" year="2007"/>
 
113
            <author login="mkleint"/>
 
114
            <compatibility addition="yes"/>
 
115
            <description>
 
116
                Adding <code>NodeFactoryUtils</code> factory class for creation of layer file node.
 
117
            </description>
 
118
        </change>
 
119
        
 
120
        
 
121
        <change>
 
122
            <api name="apisupport_spi"/>
 
123
            <summary>Initial version of SPI released</summary>
 
124
            <version major="1" minor="15"/>
 
125
            <date day="3" month="3" year="2007"/>
 
126
            <author login="mkleint"/>
 
127
            <compatibility addition="yes"/>
 
128
            <description>
 
129
                First initial release of the NetBeans Modules APISupport SPI.
 
130
                Level of stability is friend.
 
131
                Allows for alternate project types to share the
 
132
                apisupport's file creation wizards.
 
133
                Any such project type shall include <code>NbModuleProvider</code> implementation
 
134
                in it's lookup and include the <code>nbm-specific</code> template category
 
135
                in the list of <code>RecommendedTemplates</code>.
 
136
            </description>
 
137
        </change>
 
138
    </changes>
 
139
 
 
140
    <!-- Now the surrounding HTML text and document structure: -->
 
141
 
 
142
    <htmlcontents>
 
143
<!--
 
144
 
 
145
                            NO NO NO NO NO!
 
146
 
 
147
         ==============>    DO NOT EDIT ME!  <==============
 
148
 
 
149
          AUTOMATICALLY GENERATED FROM APICHANGES.XML, DO NOT EDIT
 
150
 
 
151
                SEE CHANGEME/apichanges.xml
 
152
 
 
153
-->
 
154
    <head>
 
155
      <title>Change History for the Database Explorer API</title>
 
156
      <link rel="stylesheet" href="prose.css" type="text/css"/>
 
157
    </head>
 
158
    <body>
 
159
 
 
160
<p class="overviewlink"><a href="overview-summary.html">Overview</a></p>
 
161
 
 
162
<h1>Introduction</h1>
 
163
 
 
164
<p>This document lists changes made to the APISupport SPI.</p>
 
165
 
 
166
<!-- The actual lists of changes, as summaries and details: -->
 
167
 
 
168
      <hr/><standard-changelists module-code-name="org.netbeans.modules.apisupport.project"/>
 
169
 
 
170
      <hr/><p>@FOOTER@</p>
 
171
 
 
172
    </body>
 
173
  </htmlcontents>
 
174
 
 
175
</apichanges>