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
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.
-->
<xsl:stylesheetversion="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="jsonhelp.xsl" />
<xsl:import href="export2allmodules.xsl" />
<xsl:output method="html"/>
<xsl:param name="date" />
<xsl:param name="download" select="'true'"/>
<xsl:param name="maturity" />
<xsl:param name="version" />
<xsl:param name="releaseinfo" /> <!-- unique key over all groups of apis -->
<xsl:key match="//api[@type='export']" name="apiGroups" use="@group" /> <!-- unique key over all names of apis -->
<xsl:key match="//api" name="apiNames" use="@name" />
<xsl:template match="/" > <!-- <frameset cols="20%,80%" title="" onLoad="top.loadFrames()"> <frameset rows="30%,70%" title="" onLoad="top.loadFrames()"> <frame src="overview-frame.html" name="packageListFrame" title="All Modules"/> <frame src="allclasses-frame.html" name="packageFrame" title="All classes"/> </frameset> <frame src="overview-summary.html" name="classFrame" title="Module, package, class and interface descriptions" scrolling="yes"/> <noframes> <h2>Frame Alert</h2> <p> This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version.</a> </p> </noframes>
</frameset>-->
<xsl:text disable-output-escaping='yes'><!DOCTYPEhtml></xsl:text>
<html>
<xsl:call-template name="htmlheader" >
<xsl:with-param name="title" >APIs Overview</xsl:with-param>
<xsl:with-param name="maturity" select="$maturity" />
<xsl:with-param name="version" select="$version"/>
</xsl:call-template>
<div class="innercontent">
<div class="abstract">
This document provides a list of <em>NetBeans APIs</em> with a short description
of what they are used for, and a table describing different types of interfaces
(see <a href="https://netbeans.apache.org/wiki/API_Design">What is
an API?</a> to understand why we list DTDs, file formats, etc.) and with
a stability category (<span style="background:#ffffff">stable and official</span>,
<span style="background:#ddcc80">under development</span>,
<span style="background:#afafaf;text-decoration:line-through">deprecated</span>,
<span style="background:#e0c0c0">friend or private</span>;
see <a href="https://netbeans.apache.org/wiki/API_Stability">API stability</a> for more info).
The aim is to provide as detailed a definition of NetBeans module
external interfaces as possible and give other developers a chance to decide
whether they want to depend on a particular API or not.
<p/>
Some of these APIs are part of the
<a href="https://netbeans.apache.org/kb/docs/platform/">NetBeans Platform</a>
(for example lookup,
loaders, utilities, nodes, explorer, window systems, multiview, etc.), some of them
are specific to
<a href="https://netbeans.apache.org">NetBeans IDE</a>
(projects, javacore, diff, etc.) and some
are not included in the release at all and are just provided for download
(usually via autoupdate). Basically when building an application based on
<em>NetBeans</em> one is free to choose the set of modules and their APIs
to satisfy one's needs. <!--<p> This is a list of APIs for <xsl:call-template name="apachenetbeansversion" > <xsl:with-param name="maturity"> <xsl:value-of select="$maturity"/> </xsl:with-param> <xsl:with-param name="version"> <xsl:value-of select="$version"/> </xsl:with-param> </xsl:call-template>
</p>-->
<p>To get the API of your module listed here, see the documentation for the Javadoc building <a href="https://netbeans.apache.org/wiki/APIDevelopment">infrastructure</a>.</p>
<xsl:template match="api-ref"> <!-- simply bold the name, it link will likely be visible bellow -->
<b>
<xsl:value-of select="@name" />
</b>
</xsl:template>
<!-- extracts first part before slash from LoadersAPI/bleble.html -->
<!-- Format random HTML elements as is: -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.