Removed stale build notes and cvsignore
diff --git a/bundles/org.eclipse.core.expressions/.cvsignore b/bundles/org.eclipse.core.expressions/.cvsignore deleted file mode 100644 index fe99505..0000000 --- a/bundles/org.eclipse.core.expressions/.cvsignore +++ /dev/null
@@ -1,2 +0,0 @@ -bin -
diff --git a/bundles/org.eclipse.core.expressions/apichanges_core-expressions.html b/bundles/org.eclipse.core.expressions/apichanges_core-expressions.html deleted file mode 100644 index c974eb7..0000000 --- a/bundles/org.eclipse.core.expressions/apichanges_core-expressions.html +++ /dev/null
@@ -1,62 +0,0 @@ -<!DOCTYPE doctype PUBLIC "-//w3c//dtd html 4.0 transitional//en"> -<html> -<head> - <meta http-equiv="Content-Type" - content="text/html; charset=iso-8859-1"> - <meta name="Author" content="IBM"> - <title>Core Expressions Breaking API changes</title> - <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" - type="text/css"> -</head> -<body style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"> -<font color="#8080ff" size="-2">core expressions</font> -<p>This document lists the breaking API changes that occurred between -R3.3 and R3.4 and -how to migrate from the R3.3 API to the R3.4 API. -</p> -<table border="0" cellpadding="2" cellspacing="5" width="100%" summary="Breaking API changes"> - <tbody> - <tr> - <td align="left" width="72%"> <font size="+3"><b>core expressions - -Breaking API changes from R3.3 to R3.4</b></font> <br> - </td> - </tr> - <tr> - <td> - None - </td> - </tr> - </tbody> -</table> -<p> </p> -<table border="0" cellpadding="2" cellspacing="5" width="100%" summary="Non-breaking API changes"> - <tbody> - <tr> - <td align="left" width="72%"> <font size="+3"><b>core expressions - -Non-breaking API changes from R3.3 to R3.4</b></font> <br> - </td> - </tr> - <tr> - <td> - New API added to <code>ExpressionInfo</code> to access all - properties that have been accessed - <ul><li><code>getAccessedPropertyNames</code></li> - <li><code>addAccessedPropertyName</code></li></ul> - </td> - </tr> - <tr> - <td> - New API constant added: <code>IEvaluationContext.UNDEFINED_VARIABLE</code>. - <ul><li>Represents the value used by variables that exist but are not defined - in a evaluation context. When tested by the 'with' expression, <code>false</code> - will be returned.</li></ul> - </td> - </tr> - </tbody> -</table> -<p> -API changes from 3.2 to 3.3 can be found <a href="./notes/r3.3/apichanges_core-expressions.html?view=co">here</a>. -</p> -</body> -</html> -
diff --git a/bundles/org.eclipse.core.expressions/buildnotes_core-expressions.html b/bundles/org.eclipse.core.expressions/buildnotes_core-expressions.html deleted file mode 100644 index ecdf618..0000000 --- a/bundles/org.eclipse.core.expressions/buildnotes_core-expressions.html +++ /dev/null
@@ -1,21 +0,0 @@ -<!-- - DO NOT EDIT THIS FILE WITH HTML EDITORS ---> - -<!DOCTYPE doctype PUBLIC "-//w3c//dtd html 4.0 transitional//en"> -<html> - -<head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> - <meta name="GENERATOR" content="Mozilla/4.76 [en] (Windows NT 5.0; U) [Netscape]"> - <title>Eclipse Core Expressions Build Notes</title> -</head> - -<body> -<h1>Eclipse Core Expressions Build Notes</h1> - -<h3>Incompatible and interesting new APIs</h3> -Click <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.core.expressions/apichanges_core-expressions.html?view=co">here</a> to see the list of APIs added or changed for 3.4. - -</body> -</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.core.expressions/old_build_notes.html b/bundles/org.eclipse.core.expressions/old_build_notes.html deleted file mode 100644 index 910d001..0000000 --- a/bundles/org.eclipse.core.expressions/old_build_notes.html +++ /dev/null
@@ -1,56 +0,0 @@ -<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> - -<html> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> - <meta name="Author" content="IBM"> - <meta name="GENERATOR" content="Mozilla/4.75 [en] (WinNT; U) [Netscape]"> - <title>Core Expressions Release Notes</title> -</head> -<body> - -<h1> -Eclipse Platform Build Notes <br> -Core Expressions</h1> -<h3>Mai 7, 2004</h3> -<h4>Problem Reports Fixed</h4> -<h4>Implemenation Changes</h4> -<ul> - <li>The ability to resolve a plug-in descriptor via the resolve expression has been removed - from the expression language. This was necessary since IPluginDescriptor is deprecated - for 3.0 and the functionality was new in 3.0 anyways.</li> -</ul> -<h3>March 23, 2004</h3> -<h4>Problem Reports Fixed</h4> -<h4>Implemenation Changes</h4> -<ul> - <li>removed the constructor public EvaluationContext(IEvaluationContext parent, Object defaultVariable, - Object selection). Instead of calling this constructor, the following code has to be written: - <pre> - EvaluationContext evalContext= new EvaluationContext(null, cunit); - evalContext.addVariable("selection", cunit); //$NON-NLS-1$ - </pre> - </li> - <li> removed the two string constants: - <pre> - public static final String SYSTEM= "System"; //$NON-NLS-1$ - public static final String SELECTION= "selection"; //$NON-NLS-1$ - </pre> - </li> - <li>added support for custom variable resolver (see new class IVariableResolver). So there is no need - to subclass EvaluationContext anymore to add your own resolving strategy. - </li> - <li>added support for an equals expression. </li> -</ul> - -<h3>March 16, 2004</h3> -<h4>Problem Reports Fixed</h4> -<h4>Implemenation Changes</h4> -The adapt expression now uses the new IAdapterManager API hasAdapter(Object, String) and -getAdapter(Object, String). This ensures that the right class loader is used to convert -the string representing a type into a corresponding Class. However, this change now requires -that the adapters requested via an adapt expression must be declared in XML using the new -org.eclipse.core.runtime.adapters extension point. -</body> -</html> -