Skip to content

Commit

Permalink
Migration Guide Eclipse 4.32 (#2042)
Browse files Browse the repository at this point in the history
  • Loading branch information
subyssurendran666 committed May 27, 2024
1 parent 58b6a93 commit 5977636
Show file tree
Hide file tree
Showing 10 changed files with 224 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" charset="ISO-8859-1" type="text/css">
<title>Eclipse JDT 4.32 Plug-in Migration FAQ</title>
</head>

<body>

<h1>Eclipse JDT 4.32 Plug-in Migration FAQ</h1>

<ol>
<li>None</li>
</ol>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" type="text/css">
<title>Incompatibilities between Eclipse 4.31 and 4.32</title>
</head>
<body>
<h1>Incompatibilities between Eclipse 4.31 and 4.32</h1>

<p>
So far Eclipse did not change incompatibly between 4.31 and 4.32 in ways that affect
plug-ins. Plug-ins that ran on 4.31 should run on 4.32 without any problems.
</p>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" charset="ISO-8859-1" type="text/css">
<title>Adopting JDT 4.32 mechanisms and APIs</title>
</head>

<body>

<h1>Adopting JDT 4.32 mechanisms and APIs</h1>
<p>
This section describes changes that are required if you are trying to change
your 4.31 plug-in to adopt the 4.32 mechanisms and APIs.
</p>

<ol>
<li>None</li>
</ol>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">

<head>

<meta name="copyright" content="Copyright (c) IBM 2024 Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
<title>Eclipse JDT 4.32 Plug-in Migration Guide</title>
</head>

<body>

<h1>Eclipse JDT 4.32 Plug-in Migration Guide</h1>
<p>This guide covers migrating Eclipse JDT 4.31 plug-ins to Eclipse JDT 4.32.</p>
<p>One of the goals of Eclipse 4.32 was to move Eclipse forward while remaining compatible
with previous versions to the greatest extent possible. That is, plug-ins written
against the Eclipse 4.31 APIs should continue to work in 4.32 in spite of the
API changes.</p>
<p>The key kinds of compatibility are API contract compatibility and binary compatibility.
API contract compatibility means that valid use of 4.31 APIs remains valid for
4.32, so there is no need to revisit working code. Binary compatibility means
that the API method signatures, etc. did not change in ways that would cause
existing compiled (&quot;binary&quot;) code to no longer link and run with the
new 4.32 libraries.</p>
<p>While every effort was made to avoid breakage, there are a few areas of incompatibility or new
APIs that should be adopted by clients.
This document describes those areas and provides instructions for migrating 4.31 plug-ins to
4.32.</p>
<ul>
<li><a href="4.32/faq.html">Eclipse JDT 4.32 Plug-in Migration FAQ</a></li>
<li><a href="4.32/incompatibilities.html">Incompatibilities between Eclipse JDT 4.31 and 4.32</a></li>
<li><a href="4.32/recommended.html">Adopting 4.32 mechanisms and API</a></li>
</ul>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
<!-- Define topics for the porting guide index -->
<!-- ============================================================================= -->
<toc label="Migration">
<topic label="Migrating to Eclipse JDT 4.32 from 4.31">
<topic label="Introduction" href="porting/eclipse_4_32_porting_guide.html"/>
<topic label="FAQ" href="porting/4.32/faq.html" />
<topic label="Incompatibilities" href="porting/4.32/incompatibilities.html" />
<topic label="Adopting 4.32 Mechanisms and API" href="porting/4.32/recommended.html" />
</topic>
<topic label="Migrating to Eclipse JDT 4.31 from 4.30">
<topic label="Introduction" href="porting/eclipse_4_31_porting_guide.html"/>
<topic label="FAQ" href="porting/4.31/faq.html" />
Expand All @@ -22,13 +28,13 @@
<topic label="Incompatibilities" href="porting/4.29/incompatibilities.html" />
<topic label="Adopting 4.29 Mechanisms and API" href="porting/4.29/recommended.html" />
</topic>
<topic label="Migrating to Eclipse JDT 4.28 from 4.27">
<topic label="Introduction" href="porting/eclipse_4_28_porting_guide.html"/>
<topic label="FAQ" href="porting/4.28/faq.html" />
<topic label="Incompatibilities" href="porting/4.28/incompatibilities.html" />
<topic label="Adopting 4.28 Mechanisms and API" href="porting/4.28/recommended.html" />
</topic>
<topic label="Older Migration Guides">
<topic label="Older Migration Guides">
<topic label="Migrating to Eclipse JDT 4.28 from 4.27">
<topic label="Introduction" href="porting/eclipse_4_28_porting_guide.html"/>
<topic label="FAQ" href="porting/4.28/faq.html" />
<topic label="Incompatibilities" href="porting/4.28/incompatibilities.html" />
<topic label="Adopting 4.28 Mechanisms and API" href="porting/4.28/recommended.html" />
</topic>
<topic label="Migrating to Eclipse JDT 4.27 from 4.26">
<topic label="Introduction" href="porting/eclipse_4_27_porting_guide.html"/>
<topic label="FAQ" href="porting/4.27/faq.html" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" charset="ISO-8859-1" type="text/css">
<title>Eclipse 4.32 Plug-in Migration FAQ</title>
</head>
<body>
<h1>Eclipse 4.32 Plug-in Migration FAQ</h1>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" type="text/css">
<title>Incompatibilities between Eclipse 4.31 and 4.32</title>
</head>
<body>
<h1>Incompatibilities between Eclipse 4.31 and 4.32</h1>

<p>
Eclipse changed in incompatible ways between 4.31 and 4.32 in ways that affect
plug-ins. The following entries describe the areas that changed and provide
instructions for migrating 4.31 plug-ins to 4.32. Note that you only need to look
here if you are experiencing problems running your 4.31 plug-in on 4.32.
</p>
<p>
See also the list of <a href="../removals.html">deprecated API removals</a> for this release.
</p>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">

<head>
<meta name="copyright"
content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../../book.css" type="text/css">
<title>Adopting 4.32 mechanisms and APIs</title>
</head>

<body>
<h1>Adopting 4.32 mechanisms and APIs</h1>

<p>This section describes changes that are required if you are
trying to change your 4.31 plug-in to adopt the 4.32 mechanisms and
APIs.</p>

<!-- ##############################################
############################################## -->

</body>

</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="copyright" content="Copyright (c) 2024 IBM Corporation and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
<title>Eclipse 4.32 Plug-in Migration Guide</title>
</head>

<body>

<h1>Eclipse 4.32 Plug-in Migration Guide</h1>
<p>This guide covers migrating Eclipse 4.31 plug-ins to Eclipse 4.32.</p>
<p>One of the goals of Eclipse 4.32 was to move Eclipse forward while remaining compatible
with previous versions to the greatest extent possible. That is, plug-ins written
against the Eclipse 4.31 APIs should continue to work in 4.32 in spite of any API changes.</p>
<p>The key kinds of compatibility are API contract compatibility and binary compatibility.
API contract compatibility means that valid use of 4.31 APIs remains valid for
4.32, so there is no need to revisit working code. Binary compatibility means
that the API method signatures, etc. did not change in ways that would cause
existing compiled (&quot;binary&quot;) code to no longer link and run with the
new 4.32 libraries.</p>
<p>While every effort was made to avoid breakage, there are a few areas of incompatibility or new
APIs that should be adopted by clients.
This document describes those areas and provides instructions for migrating 4.31 plug-ins to
4.32.</p>
<ul>
<li><a href="4.32/faq.html">Eclipse 4.32 Plug-in Migration FAQ</a></li>
<li><a href="4.32/incompatibilities.html">Incompatibilities between Eclipse 4.31 and 4.32</a></li>
<li><a href="4.32/recommended.html">Adopting 4.32 mechanisms and API</a></li>
</ul>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
<!-- ============================================================================= -->
<toc label="Migration">
<topic label="Deprecated API removals" href="porting/removals.html"/>
<topic label="Migrating to Eclipse 4.32 from 4.31">
<topic label="Introduction" href="porting/eclipse_4_32_porting_guide.html"/>
<topic label="FAQ" href="porting/4.32/faq.html" />
<topic label="Incompatibilities" href="porting/4.32/incompatibilities.html" />
<topic label="Adopting 4.31 mechanisms and API" href="porting/4.32/recommended.html" />
</topic>
<topic label="Migrating to Eclipse 4.31 from 4.30">
<topic label="Introduction" href="porting/eclipse_4_31_porting_guide.html"/>
<topic label="FAQ" href="porting/4.31/faq.html" />
Expand All @@ -29,13 +35,13 @@
<topic label="Incompatibilities" href="porting/4.28/incompatibilities.html" />
<topic label="Adopting 4.28 mechanisms and API" href="porting/4.28/recommended.html" />
</topic>
<topic label="Migrating to Eclipse 4.27 from 4.26">
<topic label="Introduction" href="porting/eclipse_4_27_porting_guide.html"/>
<topic label="FAQ" href="porting/4.27/faq.html" />
<topic label="Incompatibilities" href="porting/4.27/incompatibilities.html" />
<topic label="Adopting 4.27 mechanisms and API" href="porting/4.27/recommended.html" />
</topic>
<topic label="Older Migration Guides">
<topic label="Older Migration Guides">
<topic label="Migrating to Eclipse 4.27 from 4.26">
<topic label="Introduction" href="porting/eclipse_4_27_porting_guide.html"/>
<topic label="FAQ" href="porting/4.27/faq.html" />
<topic label="Incompatibilities" href="porting/4.27/incompatibilities.html" />
<topic label="Adopting 4.27 mechanisms and API" href="porting/4.27/recommended.html" />
</topic>
<topic label="Migrating to Eclipse 4.27 from 4.26">
<topic label="Introduction" href="porting/eclipse_4_27_porting_guide.html"/>
<topic label="FAQ" href="porting/4.27/faq.html" />
Expand Down

0 comments on commit 5977636

Please sign in to comment.