1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<?xml-stylesheet href="../../nbbuild/javadoctools/apichanges.xsl" type="text/xsl"?>
<!DOCTYPE apichanges PUBLIC "-//NetBeans//DTD API changes list 1.0//EN" "../../nbbuild/javadoctools/apichanges.dtd">
<!-- INFO FOR PEOPLE ADDING CHANGES:
[most of contents snipped - see openide's apichanges for how-to instructions]
<change>
<api name="compiler"/>
<summary>Some brief description here, can use <b>XHTML</b></summary>
<version major="1" minor="99"/>
<date day="13" month="6" year="2001"/>
<author login="jrhacker"/>
<compatibility addition="yes"/>
<description>
The main description of the change here.
Again can use full <b>XHTML</b> as needed.
</description>
<class package="org.openide.compiler" name="DoWhatIWantCompiler"/>
<issue number="14309"/>
</change>
-->
<apichanges>
<!-- First, a list of API names you may use: -->
<apidefs>
<apidef name="DebuggerCoreSPI">Debugger Core UI SPI</apidef>
</apidefs>
<!-- ACTUAL CHANGES BEGIN HERE: -->
<changes>
<change id="annotation-to-breakpoint">
<api name="DebuggerCoreSPI"/>
<summary><code>BreakpointAnnotation</code> class added.</summary>
<version major="2" minor="11"/>
<date day="27" month="3" year="2008"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" modification="yes" semantic="compatible"/>
<description>
<p>
<code>BreakpointAnnotation</code> class added, in order to bind annotations to breakpoints.
BreakpointEnableAction and BreakpointCustomizeAction are also moved to spi.debugger.ui module
so thatthey do not have to be duplicated in every debugger module. It's enough to implement
the new BreakpointAnnotation class and these action will automatically retrieve the breakpoint.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="BreakpointAnnotation"/>
<issue number="127758"/>
</change>
<change id="context-events-dispatch">
<api name="DebuggerCoreSPI"/>
<summary><code>EditorContextDispatcher</code> class added.</summary>
<version major="2" minor="13"/>
<date day="18" month="6" year="2008"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" modification="yes" semantic="compatible"/>
<description>
<p>
<code>EditorContextDispatcher</code> class added, in order to simplify the access to current
active elements in the IDE (like current FileObject and editor pane) and
to make the events dispatching more efficient - reduce the number of listeners on context switching.
<code>EditorContextDispatcher</code> allows registration of listeners based on files MIME type, therefore
listeners obtain change events only when context change concerns a file of the given MIME type.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="EditorContextDispatcher"/>
<issue number="137005"/>
</change>
<change id="controller">
<api name="DebuggerCoreSPI"/>
<summary><code>AttachType.getController()</code> and
<code>BreakpointType.getController()</code> methods added.</summary>
<version major="2" minor="14"/>
<date day="17" month="9" year="2008"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" modification="yes" semantic="compatible"/>
<description>
<p>
<code>AttachType.getController()</code> and <code>BreakpointType.getController()</code>
methods added, because of the clash of Controller.isValid() and
javax.swing.JComponent.isValid() methods.
This cause problems when using false validity in some cases,
therefore a separate implementation of <code>Controller</code> interface is necessary.
</p>
</description>
<issue number="138717"/>
</change>
<change id="method-chooser">
<api name="DebuggerCoreSPI"/>
<summary><code>MethodChooser</code> added.</summary>
<version major="2" minor="22"/>
<date day="28" month="1" year="2010"/>
<author login="dprusa"/>
<compatibility binary="compatible" source="compatible" modification="yes" semantic="compatible"/>
<description>
<p>
<code>MethodChooser</code> class added. It is a support for Step Into action
implementations. Providing a simple graphical interface, it allows the user
to select in a source file a method call the debugger should step into.
It has been originally implemented in the jpda debugger module, now it can be
reused by other debuggers.
</p>
</description>
<issue number="171213"/>
</change>
<change id="ViewFactory">
<api name="DebuggerCoreSPI"/>
<summary><code>ViewFactory</code> and <code>ViewLifecycle</code> classes added.</summary>
<version major="2" minor="34"/>
<date day="17" month="8" year="2012"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" addition="yes" semantic="compatible"/>
<description>
<p>
<code>ViewFactory</code> class introduced to provide GUI views
created from registered view models.
<code>ViewLifecycle</code> class is a support class for a custom view
based on registered view models.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="ViewFactory"/>
<class package="org.netbeans.spi.debugger.ui" name="ViewLifecycle"/>
<issue number="198385"/>
</change>
<change id="EngineComponentsProvider">
<api name="DebuggerCoreSPI"/>
<summary><code>EngineComponentsProvider</code> interface added.</summary>
<version major="2" minor="35"/>
<date day="19" month="9" year="2012"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" addition="yes" semantic="compatible"/>
<description>
<p>
<code>EngineComponentsProvider</code> interface introduced
to provide GUI components that are associated with a debugger
engine. <code>EngineComponentsProvider.ComponentInfo</code>
provides information about the associated component.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="EngineComponentsProvider"/>
<issue number="217953"/>
</change>
<change id="PersistentController">
<api name="DebuggerCoreSPI"/>
<summary><code>PersistentController</code> interface added.</summary>
<version major="2" minor="46"/>
<date day="21" month="7" year="2014"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" addition="yes" semantic="compatible"/>
<description>
<p>
<code>PersistentController</code> interface introduced
to provide persistence mechanism to attach controllers.
Debug action provides access to history of customized attach
controllers.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="PersistentController"/>
<issue number="193872"/>
</change>
<change id="CodeEvaluator">
<api name="DebuggerCoreSPI"/>
<summary><code>CodeEvaluator</code> class added.</summary>
<version major="2" minor="49"/>
<date day="28" month="11" year="2014"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" addition="yes" semantic="compatible"/>
<description>
<p>
<code>CodeEvaluator</code> class introduced
to access and manage a component for code evaluations
and handle it's result.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="CodeEvaluator"/>
<issue number="248626"/>
</change>
<change id="GetMIMETypesOnLine">
<api name="DebuggerCoreSPI"/>
<summary>A method for retrieving a set of language MIME types on a line in a document is added.</summary>
<version major="2" minor="50"/>
<date day="20" month="04" year="2015"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" addition="yes" semantic="compatible"/>
<description>
<p>
Methods <code>getMIMETypesOnCurrentLine()</code> and
<code>getMIMETypesOnLine()</code> added to
<code>EditorContextDispatcher</code> class. They provide a set of
MIME types of languages found on the line.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="EditorContextDispatcher"/>
<issue number="251531"/>
</change>
<change id="tooltip-ui">
<api name="DebuggerCoreSPI"/>
<summary>Tooltip view added.</summary>
<version major="2" minor="54"/>
<date day="14" month="6" year="2016"/>
<author login="mentlicher"/>
<compatibility binary="compatible" source="compatible" modification="yes" semantic="compatible"/>
<description>
<p>
Tooltip view is added into APIs.
It's accessible via <code>createToolTip</code> method in <code>ViewFactory</code>,
or <code>AbstractExpandToolTipAction</code>.
Default model filters are pre-registered under <code>ToolTipView</code> name
and they define the expanded tooltip node.
</p>
</description>
<class package="org.netbeans.spi.debugger.ui" name="ToolTipUI"/>
<issue number="262312"/>
</change>
</changes>
<!-- Now the surrounding HTML text and document structure: -->
<htmlcontents>
<!--
NO NO NO NO NO!
==============> DO NOT EDIT ME! <======================
AUTOMATICALLY GENERATED FROM APICHANGES.XML, DO NOT EDIT
SEE xml/api/doc/changes/apichanges.xml
-->
<head>
<title>Debugger Core UI SPI changes by date</title>
<link rel="stylesheet" href="prose.css" type="text/css"/>
</head>
<body>
<p class="overviewlink"><a href="overview-summary.html">Overview</a></p>
<h1>Introduction</h1>
<p>This document lists changes made to the Debugger Core UI SPIs. Please ask on the
<code>nbdev@netbeans.org</code>
mailing list if you have any questions about the details of a
change, or are wondering how to convert existing code to be compatible.
</p>
<hr/><standard-changelists module-code-name="org.netbeans.spi.debugger.ui/1"/>
<hr/><p>@FOOTER@</p>
</body>
</htmlcontents>
</apichanges>
|